Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 117 for changedTo (0.14 sec)

  1. guava/src/com/google/common/collect/Sets.java

      }
    
      /** Remove each element in an iterable from a set. */
      static boolean removeAllImpl(Set<?> set, Iterator<?> iterator) {
        boolean changed = false;
        while (iterator.hasNext()) {
          changed |= set.remove(iterator.next());
        }
        return changed;
      }
    
      static boolean removeAllImpl(Set<?> set, Collection<?> collection) {
        checkNotNull(collection); // for GWT
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    		return framework.Queue, nil
    	}
    
    	// Modifications may or may not be relevant. If the entire
    	// requests are as before, then something else must have changed
    	// and we don't care.
    	if apiequality.Semantic.DeepEqual(&originalParameters.DriverRequests, &modifiedParameters.DriverRequests) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            }
        }
    
        /**
         * If this configuration has a role set upon creation, conditionally warn upon usage mutation.
         * Configurations with roles set upon creation should not have their usage changed. In 9.0,
         * changing the usage of a configuration with a role set upon creation will become an error.
         *
         * <p>In the below two cases, for non-legacy configurations, this method does not warn. This is
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

        [(IsTailOfShape $rhs, $lhs),
         (HasOneUse $lhs),
         // The result of the new "BinaryOp" will have the same shape as
         // `input`. In other words, the shape of the `Reshape` op are not
         // changed after the transformation.
         (IsTailOfShape $rhs, $input),
         (HasRankAtMost<4> $input),
         (HasRankAtMost<4> $lhs),
         (HasRankAtMost<4> $rhs),
         (SameElementType $input, $rhs)]>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apps/v1/types.go

    	// the previous pod is ready or terminated. At most one pod will be changed
    	// at any time.
    	OrderedReadyPodManagement PodManagementPolicyType = "OrderedReady"
    	// ParallelPodManagement will create and delete pods as soon as the stateful set
    	// replica count is changed, and will not wait for pods to be ready or complete
    	// termination.
    	ParallelPodManagement PodManagementPolicyType = "Parallel"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

                }
              }
              break;
            }
            // obj changed, reread
            localValue = abstractFuture.value;
            if (!(localValue instanceof SetFuture)) {
              // obj cannot be null at this point, because value can only change from null to non-null.
              // So if value changed (and it did since we lost the CAS), then it cannot be null and
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  7. guava/src/com/google/common/util/concurrent/AbstractFuture.java

                }
              }
              break;
            }
            // obj changed, reread
            localValue = abstractFuture.value;
            if (!(localValue instanceof SetFuture)) {
              // obj cannot be null at this point, because value can only change from null to non-null.
              // So if value changed (and it did since we lost the CAS), then it cannot be null and
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  8. pkg/controller/endpointslice/endpointslice_controller_test.go

    }
    
    // protoPtr takes a Protocol and returns a pointer to it.
    func protoPtr(proto v1.Protocol) *v1.Protocol {
    	return &proto
    }
    
    // cacheMutationCheck helps ensure that cached objects have not been changed
    // in any way throughout a test run.
    type cacheMutationCheck struct {
    	objects []cacheObject
    }
    
    // cacheObject stores a reference to an original object as well as a deep copy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    				"apiserver_envelope_encryption_invalid_key_id_from_status_total",
    			); err != nil {
    				t.Fatal(err)
    			}
    		})
    	}
    }
    
    // test to ensure KMSv2 API version is not changed after the first status response
    func TestKMSv2SameVersionFromStatus(t *testing.T) {
    	probe := &kmsv2PluginProbe{name: "testplugin"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    		t.Fatalf("Delete failed: %v", err)
    	}
    
    	// Verify that ResourceVersion has changed on deletion.
    	if storedObj.ResourceVersion == deletedObj.ResourceVersion {
    		t.Fatalf("ResourceVersion didn't changed on deletion: %s", deletedObj.ResourceVersion)
    	}
    
    	testCheckResult(t, w, watch.Event{Type: watch.Deleted, Object: deletedObj})
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
Back to top