Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 71 for changedTo (0.43 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      bool changed = false;
      // Map each of the results of the call to the returned type of the
      // function.
      for (auto result :
           zip(op->getResults(), func.getFunctionType().getResults())) {
        changed = RefineResultType(op, std::get<0>(result), std::get<1>(result)) ||
                  changed;
      }
      DCOMMENT(" - call " << func.getName() << "changed ? " << changed << "\n");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. pkg/api/pod/util_test.go

    					dropDisabledFields(&newPod.Spec, nil, oldPodSpec, nil)
    
    					// old pod should never be changed
    					if !reflect.DeepEqual(oldPod, oldPodInfo.pod()) {
    						t.Errorf("old pod changed: %v", cmp.Diff(oldPod, oldPodInfo.pod()))
    					}
    
    					switch {
    					case enabled || oldPodHasProcMount:
    						// new pod should not be changed if the feature is enabled, or if the old pod had ProcMount
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	if skip(t) {
    		return nil
    	}
    	name := t.Name.Copy(fn, skip)
    	changed := name != nil
    	args := make([]AST, len(t.Args))
    	for i, a := range t.Args {
    		ac := a.Copy(fn, skip)
    		if ac == nil {
    			args[i] = a
    		} else {
    			args[i] = ac
    			changed = true
    		}
    	}
    	if !changed {
    		return fn(t)
    	}
    	if name == nil {
    		name = t.Name
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                output.count(lib1Message) == 2
                output.count(lib2Message) == 2
            }
    
            when:
            run(":app:toBeFinalized", "withDependency")
    
            then:
            if (!GradleContextualExecuter.configCache) {
                // Runs again, as the artifact has changed
                output.count(lib1Message) == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_node_status_test.go

    		t.Run(tc.name, func(t *testing.T) {
    			originalStatusCopy := tc.originalStatus.DeepCopy()
    			statusCopy := tc.status.DeepCopy()
    			changed := nodeStatusHasChanged(tc.originalStatus, tc.status)
    			assert.Equal(t, tc.expectChange, changed, "Expect node status change to be %t, but got %t.", tc.expectChange, changed)
    			assert.True(t, apiequality.Semantic.DeepEqual(originalStatusCopy, tc.originalStatus), "%s", cmp.Diff(originalStatusCopy, tc.originalStatus))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  6. pkg/controller/daemon/daemon_controller_test.go

    			oldNode: func() *v1.Node {
    				node := newNode("node1", nil)
    				setNodeTaint(node, noScheduleTaints)
    				return node
    			}(),
    			newNode:         newNode("node1", nil),
    			ds:              newDaemonSet("ds"),
    			shouldEnqueue:   true,
    			expectedCreates: func() int { return 0 },
    		},
    		{
    			test:    "Node Allocatable changed",
    			oldNode: newNode("node1", nil),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  7. pkg/apis/admissionregistration/validation/validation_test.go

    				Name:       "checkStorage",
    				Expression: "test() == true",
    			}}},
    		}, true),
    	}, {
    		name: "Webhooks must compile CEL expressions with NewExpression environment type if changed",
    		config: newValidatingWebhookConfiguration([]admissionregistration.ValidatingWebhook{{
    			Name:         "webhook.k8s.io",
    			ClientConfig: validClientConfig,
    			SideEffects:  &noSideEffect,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			`),
    			newObj: mustUnstructured(`
    				stringField: changed but ratcheted
    				atomicArray:
    				- bar: bar
    			`),
    			warnings: []string{
    				`root.atomicArray[0].bar: Invalid value: "string": gotta be baz`,
    			},
    		},
    		{
    			name: "we can't ratchet a normal CEL expression from an uncorrelatable part of the schema whose parent nodes has changed",
    			schema: mustSchema(`
    				type: array
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		if !test.isNilRequestInfo {
    			context = genericapirequest.WithRequestInfo(context, &test.requestInfo)
    		}
    		changed, finalizers := deletionFinalizersForGarbageCollection(context, registry, &example.ReplicaSet{}, &metav1.DeleteOptions{})
    		if !changed {
    			if test.changed {
    				t.Errorf("%s/%s: no new finalizers are added", test.requestInfo.APIGroup, test.requestInfo.APIVersion)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/LocalCache.java

        checkNotNull(filter);
        boolean changed = false;
        for (K key : keySet()) {
          while (true) {
            V value = get(key);
            if (value == null || !filter.test(key, value)) {
              break;
            } else if (LocalCache.this.remove(key, value)) {
              changed = true;
              break;
            }
          }
        }
        return changed;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
Back to top