Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 2,062 for leastOf (0.09 sec)

  1. src/cmd/cgo/internal/testsanitizers/testdata/msan7.go

    /*
    #include <stdint.h>
    #include <stdlib.h>
    
    // T is a C struct with alignment padding after b.
    // The padding bytes are not considered initialized by MSAN.
    // It is big enough to be passed on stack in C ABI (and least
    // on AMD64).
    typedef struct { char b; uintptr_t x, y; } T;
    
    extern void F(T);
    
    // Use weak as a hack to permit defining a function even though we use export.
    void CF(int x) __attribute__ ((weak));
    void CF(int x) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 834 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/cover_sync_atomic_import.txt

    # business if we try "go test -cover" in atomic mode targeting
    # sync/atomic itself (see #57445). Just a short test run is needed
    # since we're mainly interested in making sure the test builds and can
    # execute at least one test.
    
    go test -short -covermode=atomic -run=TestStoreInt64 sync/atomic
    go test -short -covermode=atomic -run=TestAnd8 internal/runtime/atomic
    
    # Skip remainder if no race detector support.
    [!race] skip
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 00:18:30 UTC 2024
    - 1011 bytes
    - Viewed (0)
  3. test/fixedbugs/issue14164.dir/a.go

    // defined via an embedded interface t. The compiler
    // always flattens embedded interfaces so there should
    // be no difference between F and G. Alas, currently
    // G is not inlineable (at least via export data), so
    // the issue is moot, here.
    func G(x interface{}) bool {
    	type t0 interface {
    		f()
    	}
    	_, ok := x.(interface {
    		t0
    	})
    	return ok
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 01 20:29:19 UTC 2016
    - 1.1K bytes
    - Viewed (0)
  4. pkg/test/framework/resource/environment.go

    	return nil, nil
    }
    
    // Environment is the ambient environment that the test runs in.
    type Environment interface {
    	Resource
    
    	EnvironmentName() string
    
    	// Clusters in this Environment. There will always be at least one.
    	Clusters() cluster.Clusters
    
    	// AllClusters in this Environment, including external control planes.
    	AllClusters() cluster.Clusters
    	IsMultiCluster() bool
    	IsMultiNetwork() bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 27 15:52:38 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  5. src/internal/singleflight/singleflight_test.go

    				t.Errorf("Do error: %v", err)
    				return
    			}
    			if s, _ := v.(string); s != "bar" {
    				t.Errorf("Do = %T %v; want %q", v, v, "bar")
    			}
    		}()
    	}
    	wg1.Wait()
    	// At least one goroutine is in fn now and all of them have at
    	// least reached the line before the Do.
    	c <- "bar"
    	wg2.Wait()
    	if got := calls.Load(); got <= 0 || got >= n {
    		t.Errorf("number of calls = %d; want over 0 and less than %d", got, n)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 29 22:21:50 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. src/runtime/memclr_arm64.s

    	// It is not meaningful to use ZVA if the block size is less than 64,
    	// so make sure that n is greater than or equal to 64
    	CMP	$63, R1
    	BLE	tail63
    
    	CMP	$128, R1
    	// Ensure n is at least 128 bytes, so that there is enough to copy after
    	// alignment.
    	BLT	no_zva
    	// Check if ZVA is allowed from user code, and if so get the block size
    	MOVW	block_size<>(SB), R5
    	TBNZ	$31, R5, no_zva
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 18:26:13 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/DefaultDependencySpecContainerTest.groovy

            when:
            container.project(null).library(null)
            container.dependencies
    
            then:
            def t = thrown(IllegalDependencyNotation)
            t.message == "A project dependency must have at least a project or library name specified."
    
            where:
            proj | lib  | displayName
            "p1" | "l1" | "project 'p1' library 'l1'"
            "p1" | null | "project 'p1'"
            null | "l1" | "library 'l1'"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/help.txt

    stdout tidy
    
    # go help mod tidy explains tidy
    go help mod tidy
    stdout 'usage: go mod tidy'
    
    # go mod help tidy does too
    go mod help tidy
    stdout 'usage: go mod tidy'
    
    # go mod --help doesn't print help but at least suggests it.
    ! go mod --help
    stderr 'Run ''go help mod'' for usage.'
    
    # Earlier versions of Go printed the same as 'go -h' here.
    # Also make sure we print the short help line.
    ! go vet -h
    stderr 'usage: go vet .*'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. src/net/dnsconfig_windows.go

    	for _, aa := range aas {
    		// Only take interfaces whose OperStatus is IfOperStatusUp(0x01) into DNS configs.
    		if aa.OperStatus != windows.IfOperStatusUp {
    			continue
    		}
    
    		// Only take interfaces which have at least one gateway
    		if aa.FirstGatewayAddress == nil {
    			continue
    		}
    
    		for dns := aa.FirstDnsServerAddress; dns != nil; dns = dns.Next {
    			sa, err := dns.Address.Sockaddr.Sockaddr()
    			if err != nil {
    				continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 10:25:02 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1beta2/types_swagger_doc_generated.go

    	"numberUnavailable":      "The number of nodes that should be running the daemon pod and have none of the daemon pod running and available (ready for at least spec.minReadySeconds)",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 34.3K bytes
    - Viewed (0)
Back to top