Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 114 for SAME (0.06 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        auto& node = feeds_by_node[tensor.node()];
        if (!node.insert({tensor.index(), &input}).second)
          return errors::FailedPrecondition(
              "Multiple feeds for the same output tensor '", tensor.ToString(),
              "'");
      }
    
      return feeds_by_node;
    }
    
    // Creates a unique name for a node that will be replacing a feed output tensor.
    std::string GetUniqueNodeName(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  2. pkg/kubelet/eviction/eviction_manager_test.go

    				t.Fatalf("Manager should report disk pressure since soft threshold was met")
    			}
    
    			// verify image, container or both gc were called.
    			// split filesystem can have container gc called without image.
    			// same filesystem should have both.
    			if diskGC.imageGCInvoked != tc.expectImageGcCall && diskGC.containerGCInvoked != tc.expectContainerGcCall {
    				t.Fatalf("Manager should have invoked image gc")
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    	// Configuration independent of compiler toolchain.
    	// Note: buildmode has already been accounted for in buildGcflags
    	// and should not be inserted explicitly. Most buildmodes use the
    	// same compiler settings and can reuse each other's results.
    	// If not, the reason is already recorded in buildGcflags.
    	fmt.Fprintf(h, "compile\n")
    
    	// Include information about the origin of the package that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. pkg/config/validation/validation_test.go

    				{
    					Hosts: []string{
    						"*/b.com",
    						"test/a.com",
    					},
    				},
    			},
    		}, true, false},
    		{"sidecar egress duplicated with wildcarded same namespace", &networking.Sidecar{
    			Egress: []*networking.IstioEgressListener{
    				{
    					Hosts: []string{
    						"test/*",
    						"test/a.com",
    					},
    				},
    			},
    		}, true, true},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  5. cmd/bucket-replication.go

    		return rCfg, err
    	}
    	return rCfg, nil
    }
    
    // validateReplicationDestination returns error if replication destination bucket missing or not configured
    // It also returns true if replication destination is same as this server.
    func validateReplicationDestination(ctx context.Context, bucket string, rCfg *replication.Config, checkRemote bool) (bool, APIError) {
    	var arns []string
    	if rCfg.RoleArn != "" {
    		arns = append(arns, rCfg.RoleArn)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/proxier_test.go

    	if len(healthCheckNodePorts) != 1 {
    		t.Errorf("expected healthcheck ports length 1, got %v", healthCheckNodePorts)
    	}
    
    	// No change; make sure the service map stays the same and there are
    	// no health-check changes
    	fp.OnServiceUpdate(servicev2, servicev2)
    	result = fp.svcPortMap.Update(fp.serviceChanges)
    	if len(fp.svcPortMap) != 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    		},
    		{
    			// Specs are unclear about this behavior.  We adopt a behavior where
    			// normal claim wins over a distributed claim by the same name.
    			name: "groups-distributed-normal-claim-wins",
    			options: Options{
    				JWTAuthenticator: apiserver.JWTAuthenticator{
    					Issuer: apiserver.Issuer{
    						URL:       "{{.URL}}",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_node_status_test.go

    	require.NoError(t, err)
    
    	for i, cond := range updatedNode.Status.Conditions {
    		old := metav1.Date(2012, 1, 1, 0, 0, 0, 0, time.UTC).Time
    		// Expect LastHearbeat to be updated to Now, while LastTransitionTime to be the same.
    		assert.NotEqual(t, old, cond.LastHeartbeatTime.Rfc3339Copy().UTC(), "LastHeartbeatTime for condition %v", cond.Type)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  9. pkg/apis/batch/validation/validation_test.go

    			},
    			opts: JobValidationOptions{
    				AllowMutableSchedulingDirectives: true,
    			},
    		},
    		"update completions and parallelism to same value is valid": {
    			old: batch.Job{
    				ObjectMeta: metav1.ObjectMeta{Name: "abc", Namespace: metav1.NamespaceDefault},
    				Spec: batch.JobSpec{
    					Selector:       validGeneratedSelector,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  10. src/reflect/all_test.go

    	{[]float64{math.NaN()}, self{}, true},
    	{map[float64]float64{math.NaN(): 1}, map[float64]float64{1: 2}, false},
    	{map[float64]float64{math.NaN(): 1}, self{}, true},
    
    	// Nil vs empty: not the same.
    	{[]int{}, []int(nil), false},
    	{[]int{}, []int{}, true},
    	{[]int(nil), []int(nil), true},
    	{map[int]int{}, map[int]int(nil), false},
    	{map[int]int{}, map[int]int{}, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top