Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 88 for xoring (0.3 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileCollectionIntegrationTest.groovy

    import spock.lang.Issue
    
    class ConfigurationCacheFileCollectionIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
        def "directory tree is treated as build input when its contents are queried during configuration"() {
            buildFile << """
                task report {
                    def tree = fileTree("src")
                    def file1 = file("src/file1")
                    def result = $expression
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheInputListenerLifecycleIntegrationTest.groovy

    
    import org.gradle.initialization.StartParameterBuildOptions
    
    class ConfigurationCacheInputListenerLifecycleIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
    
        def "configuration inputs are tracked during task graph serialization"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
    
            and: "a project that has a provider having undeclared configuration inputs, which is linked to a task"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/unify.go

    	return u.nify(x, y, mode, nil)
    }
    
    func (u *unifier) tracef(format string, args ...interface{}) {
    	fmt.Println(strings.Repeat(".  ", u.depth) + sprintf(nil, true, format, args...))
    }
    
    // String returns a string representation of the current mapping
    // from type parameters to types.
    func (u *unifier) String() string {
    	// sort type parameters for reproducible strings
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/models/BuildTreeModelSideEffectStore.kt

    import org.gradle.internal.serialize.graph.runWriteOperation
    import java.io.Closeable
    import java.util.concurrent.CopyOnWriteArrayList
    
    
    /**
     * Persists side effects observed during build action execution
     * and restores them on a subsequent load from the cache.
     *
     * @see BuildTreeModelSideEffect
     */
    internal
    class BuildTreeModelSideEffectStore(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/runlit.cfg.py

    config.test_exec_root = os.environ['RUNFILES_DIR']
    
    if platform.system() == 'Windows':
      tool_patterns = [
          ToolSubst('FileCheck.exe', unresolved='fatal'),
          #  Handle these specially as they are strings searched for during testing.
          ToolSubst('count.exe', unresolved='fatal'),
          ToolSubst('not.exe', unresolved='fatal')
      ]
    
      llvm_config.config.substitutions.append(
          ('%python', '"%s"' % (sys.executable)))
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 18:52:19 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. cmd/object-api-datatypes.go

    	CacheControl string
    
    	// Specify object storage class
    	StorageClass string
    
    	ReplicationStatusInternal string
    	ReplicationStatus         replication.StatusType
    	// User-Defined metadata
    	UserDefined map[string]string
    
    	// User-Defined object tags
    	UserTags string
    
    	// List of individual parts, maximum size of upto 10,000
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights.h

    // Map from custom op code to custom op quantization information.
    using CustomOpMap = std::unordered_map<std::string, CustomOpInfo>;
    
    // Applies dynamic range quantization for the given model wehre the input_model
    // type is flatbuffer but is converted to MLIR during quantization process and
    // then converted back to flatbuffer for return. Note that this is part of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. cmd/iam-object-store.go

    	return s[:i+1], s[i+1:]
    }
    
    func (iamOS *IAMObjectStore) listAllIAMConfigItems(ctx context.Context) (res map[string][]string, err error) {
    	res = make(map[string][]string)
    	ctx, cancel := context.WithCancel(ctx)
    	defer cancel()
    	for item := range listIAMConfigItems(ctx, iamOS.objAPI, iamConfigPrefix+SlashSeparator) {
    		if item.Err != nil {
    			return nil, item.Err
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  9. samples/bookinfo/src/productpage/productpage.py

            }
        ]
    
    
    def getProduct(product_id):
        products = getProducts()
        if product_id + 1 > len(products):
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    			pod := obj.(*example.Pod)
    			pod.ObjectMeta.Labels = map[string]string{"foo": "bar"}
    			return pod, nil
    		}), nil); err != nil {
    		t.Errorf("Unexpected failure during updated: %v", err)
    	}
    
    	out := &example.Pod{}
    	if err := store.Delete(ctx, key, out, nil, storage.ValidateAllObjectFunc, originalPod); err != nil {
    		t.Errorf("Unexpected failure during deletion: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
Back to top