Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 173 for combinations (0.2 sec)

  1. src/runtime/extern.go

    func Version() string {
    	return buildVersion
    }
    
    // GOOS is the running program's operating system target:
    // one of darwin, freebsd, linux, and so on.
    // To view possible combinations of GOOS and GOARCH, run "go tool dist list".
    const GOOS string = goos.GOOS
    
    // GOARCH is the running program's architecture target:
    // one of 386, amd64, arm, s390x, and so on.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  2. src/runtime/hash_test.go

    	if k == 0 {
    		return
    	}
    	for j := i; j < len(b)*8; j++ {
    		b[j/8] |= byte(1 << uint(j&7))
    		setbits(h, b, j+1, k-1)
    		b[j/8] &= byte(^(1 << uint(j&7)))
    	}
    }
    
    // Test all possible combinations of n blocks from the set s.
    // "permutation" is a bad name here, but it is what Smhasher uses.
    func TestSmhasherPermutation(t *testing.T) {
    	if GOARCH == "wasm" {
    		t.Skip("Too slow on wasm")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 17:50:18 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/networking/v1/generated.proto

      // items is a list of schema objects.
      repeated NetworkPolicy items = 2;
    }
    
    // NetworkPolicyPeer describes a peer to allow traffic to/from. Only certain combinations of
    // fields are allowed
    message NetworkPolicyPeer {
      // podSelector is a label selector which selects pods. This field follows standard label
      // selector semantics; if present but empty, it selects all pods.
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/mod/module/module.go

    // There are many subtle considerations, including Unicode ambiguity,
    // security, network, and file system representations.
    //
    // This file also defines the set of valid module path and version combinations,
    // another topic with many subtle considerations.
    //
    // Changes to the semantics in this file require approval from rsc.
    
    import (
    	"errors"
    	"fmt"
    	"path"
    	"sort"
    	"strings"
    	"unicode"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/networking/v1/generated.proto

      // items is a list of schema objects.
      repeated NetworkPolicy items = 2;
    }
    
    // NetworkPolicyPeer describes a peer to allow traffic to/from. Only certain combinations of
    // fields are allowed
    message NetworkPolicyPeer {
      // podSelector is a label selector which selects pods. This field follows standard label
      // selector semantics; if present but empty, it selects all pods.
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/networking/v1/types.go

    	// +optional
    	// +listType=atomic
    	Except []string `json:"except,omitempty" protobuf:"bytes,2,rep,name=except"`
    }
    
    // NetworkPolicyPeer describes a peer to allow traffic to/from. Only certain combinations of
    // fields are allowed
    type NetworkPolicyPeer struct {
    	// podSelector is a label selector which selects pods. This field follows standard label
    	// selector semantics; if present but empty, it selects all pods.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  7. cmd/object_api_suite_test.go

    			enableCompression(t, true, []string{"*"}, []string{"*"})
    		}, MakeBucketOptions{
    			VersioningEnabled: true,
    		})
    	})
    }
    
    // ExecExtendedObjectLayerTest will execute the tests with combinations of encrypted & compressed.
    // This can be used to test functionality when reading and writing data.
    func ExecExtendedObjectLayerTest(t *testing.T, objTest objTestType) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  8. src/go/types/unify.go

    // If unification succeeds, as a side-effect, the types of the
    // bound type parameters may be determined.
    //
    // Unification typically requires multiple calls u.unify(x, y) to
    // a given unifier u, with various combinations of types x and y.
    // In each call, additional type parameter types may be determined
    // as a side effect and recorded in u.
    // If a call fails (returns false), unification fails.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/unify.go

    // If unification succeeds, as a side-effect, the types of the
    // bound type parameters may be determined.
    //
    // Unification typically requires multiple calls u.unify(x, y) to
    // a given unifier u, with various combinations of types x and y.
    // In each call, additional type parameter types may be determined
    // as a side effect and recorded in u.
    // If a call fails (returns false), unification fails.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/OrderingTest.java

          return other instanceof NumberOrdering;
        }
    
        private static final long serialVersionUID = 0;
      }
    
      /*
       * Now we have monster tests that create hundreds of Orderings using different
       * combinations of methods, then checks compare(), binarySearch() and so
       * forth on each one.
       */
    
      // should periodically try increasing this, but it makes the test run long
      private static final int RECURSE_DEPTH = 2;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 42.5K bytes
    - Viewed (0)
Back to top