Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 967 for updateIPs (1.66 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/Console.java

        // TODO(ew): Consider whether this belongs in BuildProgressArea or here
        StyledLabel getStatusBar();
    
        /**
         * Flushes any pending updates. Updates may or may not be buffered, and this method should be called to finish rendering and pending updates, such as updating the status bar.
         */
        void flush();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherRegistry.java

        /**
         * Updates the watchers after changes to the root.
         *
         * @throws WatchingNotSupportedException when the native watchers can't be updated.
         */
        void virtualFileSystemContentsChanged(Collection<FileSystemLocationSnapshot> removedSnapshots, Collection<FileSystemLocationSnapshot> addedSnapshots, SnapshotHierarchy root);
    
        /**
         * Updates the VFS and the watchers when the build started.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/hash/AbstractByteHasher.java

      private final ByteBuffer scratch = ByteBuffer.allocate(8).order(ByteOrder.LITTLE_ENDIAN);
    
      /** Updates this hasher with the given byte. */
      protected abstract void update(byte b);
    
      /** Updates this hasher with the given bytes. */
      protected void update(byte[] b) {
        update(b, 0, b.length);
      }
    
      /** Updates this hasher with {@code len} bytes starting at {@code off} in the given buffer. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 15 20:59:00 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/scatter.cc

        const Value& indices, const ShapedType& indices_type, Value& updates,
        ShapedType& updates_type, ConversionPatternRewriter& rewriter) {
      auto canonical_update_window_dims = llvm::to_vector(
          llvm::seq<int64_t>(indices_type.getRank() - 1, updates_type.getRank()));
    
      if (canonical_update_window_dims == update_window_dims) return success();
    
      // Permute updates if `update_window_dims` are leading indices.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 02:29:42 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/hash/AbstractByteHasher.java

      private final ByteBuffer scratch = ByteBuffer.allocate(8).order(ByteOrder.LITTLE_ENDIAN);
    
      /** Updates this hasher with the given byte. */
      protected abstract void update(byte b);
    
      /** Updates this hasher with the given bytes. */
      protected void update(byte[] b) {
        update(b, 0, b.length);
      }
    
      /** Updates this hasher with {@code len} bytes starting at {@code off} in the given buffer. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 15 20:59:00 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/CachedEnvironmentStateCodec.kt

        override suspend fun WriteContext.encode(value: ConfigurationCacheEnvironmentChangeTracker.CachedEnvironmentState) {
            writeBoolean(value.cleared)
    
            writeCollection(value.updates) { update ->
                val keyString = update.key.toString()
                withPropertyTrace(PropertyTrace.SystemProperty(keyString, update.location)) {
                    try {
                        writeClass(update.javaClass)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/manager.go

    	// Times gets the timestamps associated with each operation.
    	Times() map[string]*metav1.Time
    }
    
    // Manager updates the managed fields and merges applied configurations.
    type Manager interface {
    	// Update is used when the object has already been merged (non-apply
    	// use-case), and simply updates the managed fields in the output
    	// object.
    	//  * `liveObj` is not mutated by this function
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. tests/fuzz/pilot_networking_fuzzer.go

    	}
    
    	w := &model.WatchedResource{}
    	err = f.GenerateStruct(w)
    	if err != nil {
    		return 0
    	}
    
    	updates := &model.PushRequest{}
    	err = f.GenerateStruct(updates)
    	if err != nil {
    		return 0
    	}
    
    	generator := &grpcgen.GrpcConfigGenerator{}
    	_, _, _ = generator.Generate(proxy, w, updates)
    
    	return 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 07 03:26:36 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  9. pilot/pkg/autoregistration/internal/health/util.go

    // is allowed to receive health status updates sent by an Istio Proxy.
    //
    // Consider a workload eligible for health status updates as long as the
    // WorkloadEntryHealthCheckAnnotation is present (no matter what the value is).
    // In case the annotation is present but the value is not "true", the proxy should be allowed
    // to send health status updates, config health condition should be updated accordingly,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 07:04:17 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. pkg/controller/endpointslicemirroring/metrics/cache.go

    func (spc *EndpointPortCache) numEndpoints() int {
    	num := 0
    	for _, eInfo := range spc.items {
    		num += eInfo.Endpoints
    	}
    	return num
    }
    
    // UpdateEndpointPortCache updates a EndpointPortCache in the global cache for a
    // given Service and updates the corresponding metrics.
    // Parameters:
    // * endpointsNN refers to a NamespacedName representing the Endpoints resource.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top