Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 38 of 38 for Combine (0.33 sec)

  1. src/cmd/vendor/golang.org/x/sync/semaphore/semaphore.go

    	"context"
    	"sync"
    )
    
    type waiter struct {
    	n     int64
    	ready chan<- struct{} // Closed when semaphore acquired.
    }
    
    // NewWeighted creates a new weighted semaphore with the given
    // maximum combined weight for concurrent access.
    func NewWeighted(n int64) *Weighted {
    	w := &Weighted{size: n}
    	return w
    }
    
    // Weighted provides a way to bound concurrent access to a resource.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependencies/HtmlDependencyReportTask.java

    import org.gradle.util.internal.ClosureBackedAction;
    
    import javax.inject.Inject;
    import java.util.stream.Stream;
    
    /**
     * Generates an HTML dependency report. This report
     * combines the features of the ASCII dependency report and those of the ASCII
     * dependency insight report. For a given project, it generates a tree of the dependencies
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/complete.go

    				// additionalProperties structural schema specified instead of
    				// direct properties
    				// NOTE: This does not allow `additionalProperties: true` structural
    				// schema to be combined with specific property validations.
    				allErrs = append(allErrs, validateNestedValueValidationCompleteness(&vFld, sAdditionalPropertiesSchema, sPath.Child("additionalProperties"), vPath.Child("properties").Key(k), opts)...)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 18:20:00 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/api/v2/legalize_tf.cc

          compilation_result.get());
    
      if (combined_bridge_status.ok()) {
        VLOG(1) << "Successfully compiled MLIR computation to XLA HLO using "
                   "Combined MLIR and XlaBuilder Bridge.";
    
        DumpHloCompilationResult("legalize_tf_combined_bridge.hlo",
                                 compilation_result.get())
            .IgnoreError();
        return *compilation_result;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 00:40:46 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. operator/pkg/name/name.go

    }
    
    // ManifestMap is a map of ComponentName to its manifest string.
    type ManifestMap map[ComponentName][]string
    
    // Consolidated returns a representation of mm where all manifests in the slice under a key are combined into a single
    // manifest.
    func (mm ManifestMap) Consolidated() map[string]string {
    	out := make(map[string]string)
    	for cname, ms := range mm {
    		allM := ""
    		for _, m := range ms {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. cni/pkg/install/cniconfig.go

    	return writeCNIConfig(ctx, marshalledJSON, cfg)
    }
    
    // writeCNIConfig will
    // 1. read in the existing CNI config file
    // 2. append the `istio`-specific entry
    // 3. write the combined result back out to the same path, overwriting the original.
    func writeCNIConfig(ctx context.Context, pluginConfig []byte, cfg *config.InstallConfig) (string, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. src/net/ipsock.go

    	// last percent sign.
    	if i := bytealg.LastIndexByteString(s, '%'); i > 0 {
    		host, zone = s[:i], s[i+1:]
    	} else {
    		host = s
    	}
    	return
    }
    
    // JoinHostPort combines host and port into a network address of the
    // form "host:port". If host contains a colon, as found in literal
    // IPv6 addresses, then JoinHostPort returns "[host]:port".
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. pkg/test/framework/resource/settings.go

    	// This should not be depended on as a primary means for reducing test flakes.
    	Retries int
    
    	// If enabled, namespaces will be reused rather than created with dynamic names each time.
    	// This is useful when combined with NoCleanup, to allow quickly iterating on tests.
    	StableNamespaces bool
    
    	// The label selector that the user has specified.
    	SelectorString string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top