Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 70 for somme (0.39 sec)

  1. pkg/proxy/nftables/proxier_test.go

    	servicev1 := makeTestService("somewhere", "some-service", func(svc *v1.Service) {
    		svc.Spec.Type = v1.ServiceTypeClusterIP
    		svc.Spec.ClusterIP = "172.30.55.4"
    		svc.Spec.Ports = addTestPort(svc.Spec.Ports, "something", "UDP", 1234, 4321, 0)
    		svc.Spec.Ports = addTestPort(svc.Spec.Ports, "somethingelse", "TCP", 1235, 5321, 0)
    	})
    	servicev2 := makeTestService("somewhere", "some-service", func(svc *v1.Service) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/proxier_test.go

    	servicev1 := makeTestService("somewhere", "some-service", func(svc *v1.Service) {
    		svc.Spec.Type = v1.ServiceTypeClusterIP
    		svc.Spec.ClusterIP = "172.16.55.4"
    		svc.Spec.Ports = addTestPort(svc.Spec.Ports, "something", "UDP", 1234, 4321, 0)
    		svc.Spec.Ports = addTestPort(svc.Spec.Ports, "somethingelse", "TCP", 1235, 5321, 0)
    	})
    	servicev2 := makeTestService("somewhere", "some-service", func(svc *v1.Service) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  3. pkg/scheduler/schedule_one_test.go

    					},
    					UnschedulablePlugins: sets.New("FakeFilter"),
    				},
    			},
    		},
    		{
    			name: "test with extender which filters out some Nodes",
    			registerPlugins: []tf.RegisterPluginFunc{
    				tf.RegisterQueueSortPlugin(queuesort.Name, queuesort.New),
    				tf.RegisterFilterPlugin(
    					"FakeFilter",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  4. pkg/controller/daemon/daemon_controller_test.go

    		err = manager.dsStore.Add(ds)
    		if err != nil {
    			t.Fatal(err)
    		}
    		expectSyncDaemonSets(t, manager, ds, podControl, 1, 0, 0)
    	}
    }
    
    // DaemonSet with node selector that matches some nodes, and node name that matches a different node, should do nothing.
    func TestInconsistentNameSelectorDaemonSetDoesNothing(t *testing.T) {
    	for _, strategy := range updateStrategies() {
    		ds := newDaemonSet("foo")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        ArrayRef<int64_t> input_spatial_dims = dnums.getInputSpatialDimensions();
        ArrayRef<int64_t> output_spatial_dims = dnums.getOutputSpatialDimensions();
        for (size_t i = 0; i < num_spatial_dims; ++i) {
          // In some cases the total padding is odd, so we have 1 leftover, which is
          // why below we check pad_delta > 1.
          int64_t pad_delta = std::abs(padding[2 * i] - padding[2 * i + 1]);
          if (pad_delta > 1) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

          } else {
            DCOMMENT("-> not refining shape element #" << shape_elts.index());
            shape.push_back(std::get<0>(shape_elts.value()));
          }
        }
      }
    
      // Some tensor have an element type wrapping a subtensor, like resource and
      // variants. In this case we may recurse on the wrapped subtype.
      // `element_type` will contain the refined inferred element type for the
      // returned type.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/cache/LocalCache.java

      }
    
      // Inner Classes
    
      /**
       * Segments are specialized versions of hash tables. This subclass inherits from ReentrantLock
       * opportunistically, just to simplify some locking and avoid separate construction.
       */
      @SuppressWarnings("serial") // This class is never serialized.
      static class Segment<K, V> extends ReentrantLock {
    
        /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  8. src/database/sql/sql_test.go

    			0,
    			time.Millisecond - time.Nanosecond,
    			int64(usedConns - reusedConns),
    			int64(usedConns - reusedConns),
    			10 * time.Millisecond,
    			0,
    		},
    		{
    			// Want to close some connections via max idle time and one by max lifetime.
    			time.Millisecond,
    			// nowFunc() - MaxLifetime should be 1 * time.Nanosecond in connectionCleanerRunLocked.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  9. pkg/config/validation/validation_test.go

    			"cannot have associated private key", "",
    		},
    		{
    			"istio_mutual with credential name",
    			&networking.ServerTLSSettings{
    				Mode:           networking.ServerTLSSettings_ISTIO_MUTUAL,
    				CredentialName: "some-cred",
    			},
    			"cannot have associated credentialName", "",
    		},
    		{
    			"invalid cipher suites",
    			&networking.ServerTLSSettings{
    				Mode:           networking.ServerTLSSettings_SIMPLE,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				// In Kubernetes 1.24 and later, the CEL type returns false for an int-or-string comparison against the
    				// other type, making it safe to write validation rules like:
    				"self.something == 1",
    				"self.something != 'some string'",
    				"self.something == 1 || self.something == '25%'",
    				"self.something == '25%' || self.something == 1",
    
    				// In Kubernetes 1.23 and earlier, all int-or-string access must be guarded by a type check to prevent
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
Back to top