Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 87 for hard (0.07 sec)

  1. src/os/os_test.go

    		t.Fatalf("stat %q failed: %v", to, err)
    	}
    	fromstat, err := Stat(from)
    	if err != nil {
    		t.Fatalf("stat %q failed: %v", from, err)
    	}
    	if !SameFile(tostat, fromstat) {
    		t.Errorf("link %q, %q did not create hard link", to, from)
    	}
    	// We should not be able to perform the same Link() a second time
    	err = Link(to, from)
    	switch err := err.(type) {
    	case *LinkError:
    		if err.Op != "link" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    	case "mips64", "mips64le":
    		if gomips64 == "hardfloat" {
    			return []string{"-mabi=64", "-mhard-float"}
    		} else if gomips64 == "softfloat" {
    			return []string{"-mabi=64", "-msoft-float"}
    		}
    	case "mips", "mipsle":
    		if gomips == "hardfloat" {
    			return []string{"-mabi=32", "-mfp32", "-mhard-float", "-mno-odd-spreg"}
    		} else if gomips == "softfloat" {
    			return []string{"-mabi=32", "-msoft-float"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. src/main/webapp/js/admin/adminlte.min.js.map

    `removed${EVENT_KEY}`\n  }\n\n  const ClassName = {\n    CARD: 'card',\n    COLLAPSED: 'collapsed-card',\n    WAS_COLLAPSED: 'was-collapsed',\n    MAXIMIZED: 'maximized-card',\n  }\n\n  const Selector = {\n    DATA_REMOVE: '[data-card-widget=\"remove\"]',\n    DATA_COLLAPSE: '[data-card-widget=\"collapse\"]',\n    DATA_MAXIMIZE: '[data-card-widget=\"maximize\"]',\n    CARD: `.${ClassName.CARD}`,\n    CARD_HEADER: '.card-header',\n    CARD_BODY: '.card-body',\n    CARD_FOOTER: '.card-footer',\n    COLLAPSED:...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 07:55:41 UTC 2020
    - 77K bytes
    - Viewed (0)
  4. src/crypto/tls/conn.go

    //   - c.input must be empty
    //
    // During the handshake one and only one of the following will happen:
    //   - c.hand grows
    //   - c.in.changeCipherSpec is called
    //   - an error is returned
    //
    // After the handshake one and only one of the following will happen:
    //   - c.hand grows
    //   - c.input is set
    //   - an error is returned
    func (c *Conn) readRecordOrCCS(expectChangeCipherSpec bool) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. pilot/pkg/model/sidecar_test.go

    			configs8,
    			services9,
    			nil,
    			[]*Service{
    				{
    					Hostname: "foo.svc.cluster.local",
    					Ports:    port7443,
    				},
    			},
    			nil,
    		},
    		{
    			"wild-card-egress-listener-match",
    			configs9,
    			services10,
    			nil,
    			[]*Service{
    				{
    					Hostname: "foo.svc.cluster.local",
    					Ports:    port7443,
    				},
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    // generators) are evaluated in InitGoogleTest(), after main() has started.
    // This allows the user on one hand, to adjust generator parameters in order
    // to dynamically determine a set of tests to run and on the other hand,
    // give the user a chance to inspect the generated tests with Google Test
    // reflection API before RUN_ALL_TESTS() is executed.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/route/route.go

    		if vshost.IsWildCarded() {
    			// We'll process wild card hosts later
    			wchosts = append(wchosts, vshost)
    			continue
    		}
    		if svc, exists := serviceRegistry[vshost]; exists {
    			matchingRegistryServices = append(matchingRegistryServices, svc)
    		} else {
    			nonServiceRegistryHosts = append(nonServiceRegistryHosts, hostname)
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  8. src/cmd/dist/build.go

    	if err := os.WriteFile(importcfg, buf.Bytes(), 0666); err != nil {
    		fatalf("cannot write importcfg file: %v", err)
    	}
    
    	var archive string
    	// The next loop will compile individual non-Go files.
    	// Hand the Go files to the compiler en masse.
    	// For packages containing assembly, this writes go_asm.h, which
    	// the assembly files will need.
    	pkgName := pkg
    	if strings.HasPrefix(pkg, "cmd/") && strings.Count(pkg, "/") == 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    // generators) are evaluated in InitGoogleTest(), after main() has started.
    // This allows the user on one hand, to adjust generator parameters in order
    // to dynamically determine a set of tests to run and on the other hand,
    // give the user a chance to inspect the generated tests with Google Test
    // reflection API before RUN_ALL_TESTS() is executed.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
  10. src/net/http/transport.go

    			// HTTP/1.
    			// Loop over the waiting list until we find a w that isn't done already, and hand it pconn.
    			for q.len() > 0 {
    				w := q.popFront()
    				if w.tryDeliver(pconn, nil, time.Time{}) {
    					done = true
    					break
    				}
    			}
    		} else {
    			// HTTP/2.
    			// Can hand the same pconn to everyone in the waiting list,
    			// and we still won't be done: we want to put it in the idle
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top