Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for Cases (0.16 sec)

  1. pkg/registry/core/service/storage/storage_test.go

    		expectError bool
    	}
    	// These cases were chosen from the full gamut to ensure all "interesting"
    	// cases are covered.
    	testCases := []struct {
    		name            string
    		clusterFamilies []api.IPFamily
    		cases           []testCase
    	}{{
    		name:            "singlestack:v6",
    		clusterFamilies: []api.IPFamily{api.IPv6Protocol},
    		cases: []testCase{{
    			name: "Policy:unset_Families:unset",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  2. doc/go_spec.html

    "Switch" statements provide multi-way execution.
    An expression or type is compared to the "cases"
    inside the "switch" to determine which branch
    to execute.
    </p>
    
    <pre class="ebnf">
    SwitchStmt = ExprSwitchStmt | TypeSwitchStmt .
    </pre>
    
    <p>
    There are two forms: expression switches and type switches.
    In an expression switch, the cases contain expressions that are compared
    against the value of the switch expression.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    		var min, max uint64
    		if unsigned {
    			min, _ = constant.Uint64Val(n.Cases[0])
    			max, _ = constant.Uint64Val(n.Cases[len(n.Cases)-1])
    		} else {
    			mn, _ := constant.Int64Val(n.Cases[0])
    			mx, _ := constant.Int64Val(n.Cases[len(n.Cases)-1])
    			min = uint64(mn)
    			max = uint64(mx)
    		}
    		// Compare idx-min with max-min, to see if we can use the jump table.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                      cannot serve both TCP and UDP listeners on the same address, or
                      cannot mix HTTPS and generic TLS listens on the same port would
                      not consider those cases compatible, even though they are distinct.
                      \n Note that requests SHOULD match at most one Listener. For example,
                      if Listeners are defined for \"foo.example.com\" and \"*.example.com\",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  5. pkg/proxy/iptables/proxier_test.go

    		// Ignore jumps to chains that we expect to exist even if kube-proxy
    		// didn't create them itself.
    		jumpedChains.Delete("ACCEPT", "REJECT", "DROP", "MARK", "RETURN", "DNAT", "SNAT", "MASQUERADE")
    
    		// Find cases where we have "-A FOO ... -j BAR" but no ":BAR", meaning
    		// that we are jumping to a chain that was not created.
    		missingChains := jumpedChains.Difference(createdChains)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    }
    
    // Given a value (broadcast_to) and a feature dimension, broadcasts a 1D
    // value (broadcast_from) along that feature dimension. This is a shortcut
    // for the cases where a 1D tensor must be broadcast along a specific feature
    // dimension, which can vary based on data layout, etc.
    //
    // The extent of `broadcast_from` dim0 must be equal to the extent of the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  7. pkg/apis/core/types.go

    type ConfigMapNodeConfigSource struct {
    	// Namespace is the metadata.namespace of the referenced ConfigMap.
    	// This field is required in all cases.
    	Namespace string
    
    	// Name is the metadata.name of the referenced ConfigMap.
    	// This field is required in all cases.
    	Name string
    
    	// UID is the metadata.UID of the referenced ConfigMap.
    	// This field is forbidden in Node.Spec, and required in Node.Status.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  8. docs/en/docs/release-notes.md

    * Improved **correctness** in corner cases.
    * **Safer** types.
    * Better **performance** and **less energy** consumption.
    * Better **extensibility**.
    * etc.
    
    ...all this while keeping the **same Python API**. In most of the cases, for simple models, you can simply upgrade the Pydantic version and get all the benefits. 🚀
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/core/v1/generated.proto

    message ConfigMapNodeConfigSource {
      // Namespace is the metadata.namespace of the referenced ConfigMap.
      // This field is required in all cases.
      optional string namespace = 1;
    
      // Name is the metadata.name of the referenced ConfigMap.
      // This field is required in all cases.
      optional string name = 2;
    
      // UID is the metadata.UID of the referenced ConfigMap.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.25.md

    ## Changes by Kind
    
    ### Feature
    
    - Kubeadm: generate CA certificates with a start time that is offset 5 minutes in the past relative to the current system time to workaround cases of clock desync.
      client-go: allow to set NotBefore in NewSelfSignedCACert() ([#119115](https://github.com/kubernetes/kubernetes/pull/119115), [@champtar](https://github.com/champtar)) [SIG API Machinery, Auth and Cluster Lifecycle]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
Back to top