Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 73 for doBind (0.33 sec)

  1. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	}
    
    	// Some driver responses missing?
    	if pendingDelayedClaims > 0 {
    		// We could start a pod scheduling attempt to refresh the
    		// potential nodes list.  But pod scheduling attempts are
    		// expensive and doing them too often causes the pod to enter
    		// backoff. Let's wait instead for all drivers to reply.
    		if loggerV := logger.V(6); loggerV.Enabled() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  2. cmd/xl-storage.go

    	var w *os.File
    	if sync {
    		// Perform DirectIO along with fdatasync for larger xl.meta, mostly when
    		// xl.meta has "inlined data" we prefer writing O_DIRECT and then doing
    		// fdatasync() at the end instead of opening the file with O_DSYNC.
    		//
    		// This is an optimization mainly to ensure faster I/O.
    		if len(b) > xioutil.DirectioAlignSize {
    			r := bytes.NewReader(b)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    It synchronizes the contents of a directory with its source.
    
    This can be useful for doing things such as installing your application, creating an exploded copy of your archives, or maintaining a copy of the project's dependencies.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

          if (failed(result)) return failure();
        }
      }
    
      // After we have hoisted operations in the block, we may have added new read
      // and writes of resources to this block. Clean them up by doing store-load
      // forwarding.
      ForwardStoreToLoad(block);
      return success();
    }
    
    // Lifts resource operation from tf_device.cluster ops nested in `op` outside.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/lib.go

    			//      AS_NEEDED ( /lib64/ld-linux-x86-64.so.2 ) )
    			//
    			// where libc_nonshared.a contains a small set of
    			// symbols including "__stack_chk_fail_local" and a
    			// few others. Thus if we are doing internal linking
    			// and "__stack_chk_fail_local" is unresolved (most
    			// likely due to the use of -fstack-protector), try
    			// loading libc_nonshared.a to resolve it.
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/route/route.go

    ) []VirtualHostWrapper {
    	meshGateway := sets.New(constants.IstioMeshGateway)
    	opts := RouteOptions{
    		// Sidecar is never terminating TLS
    		IsTLS: false,
    		// Sidecar is never doing H3 (yet)
    		IsHTTP3AltSvcHeaderNeeded: false,
    		Mesh:                      mesh,
    	}
    	routes, err := BuildHTTPRoutesForVirtualService(node, virtualService, serviceRegistry, hashByDestination,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/proxier.go

    		})
    	}
    
    	// Fill in nodeport-ips set if needed (or delete it if not). (We do "add+delete"
    	// rather than just "delete" when we want to ensure the set doesn't exist, because
    	// doing just "delete" would return an error if the set didn't exist.)
    	tx.Add(&knftables.Set{
    		Name:    nodePortIPsSet,
    		Type:    ipvX_addr,
    		Comment: ptr.To("IPs that accept NodePort traffic"),
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    We recommend not modifying domain objects (configurations, source sets, tasks, etc) from configuration blocks for other domain objects that may not be configured.
    
    For example, avoid doing something like this:
    
    ```kotlin
        configurations {
            val myConfig = create("myConfig")
        }
    
        tasks.register("myTask") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

                    if (resolve(type, false, false, true)) {
                        continue;
                    }
                    // Maybe this type belongs in the same package as the node that is doing the
                    // static import. In that case, the package may not have been explicitly specified.
                    // Try with the node's package too. If still not found, revert to original type name.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

          return failure();
        llvm::SmallVector<Value, 4> operands(addn_op.getInputs().begin(),
                                             addn_op.getInputs().end());
    
        int64_t n = operands.size();
        // Keep doing tree-based reduction when there are more than one operand.
        while (n > 1) {
          for (int64_t i = 0; i < n; i += 2) {
            // Add two adjacent operands if applicable.
            operands[i / 2] =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
Back to top