Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 108 for asSet (0.22 sec)

  1. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    not required. We can use the output of first replica in such cases.
    ### `-tf-init-text-file-to-import`
    
    _Convert InitializeTableFromTextFileV2 ops to LookupTableImportV2Op to remove the dependency on asset files_
    
    
    #### Options
    ```
    -tf-saved-model-dir : Directory containing the model exported as a TensorFlow SavedModel. If your model is not based on the TensorFlow SavedModel, use an empty value.
    ```
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  2. maven-compat/src/test/java/org/apache/maven/project/inheritance/t05/ProjectInheritanceTest.java

            Set set = project1.getArtifacts();
            assertNotNull(set, "No artifacts");
            assertTrue(set.size() > 0, "No Artifacts");
    
            for (Object aSet : set) {
                Artifact artifact = (Artifact) aSet;
                System.out.println("Artifact: " + artifact.getDependencyConflictId() + " " + artifact.getVersion()
                        + " Scope: " + artifact.getScope());
                assertTrue(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. maven-compat/src/test/java/org/apache/maven/project/inheritance/t07/ProjectInheritanceTest.java

            assertNotNull(set, "No artifacts");
            assertTrue(set.size() > 0, "No Artifacts");
            assertTrue(set.size() == 3, "Set size should be 3, is " + set.size());
    
            for (Object aSet : set) {
                Artifact artifact = (Artifact) aSet;
                assertFalse(artifact.getArtifactId().equals("t07-d"));
                System.out.println("Artifact: " + artifact.getDependencyConflictId() + " " + artifact.getVersion()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. pkg/test/framework/label/filter.go

    			continue
    		}
    
    		if negative {
    			absent = append(absent, l)
    		} else {
    			present = append(present, l)
    		}
    	}
    
    	pSet := NewSet(present...)
    	aSet := NewSet(absent...)
    
    	if pSet.containsAny(aSet) || aSet.containsAny(pSet) {
    		return Selector{}, fmt.Errorf("conflicting selector specification: %q", s)
    	}
    
    	return NewSelector(present, absent), nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. maven-compat/src/test/java/org/apache/maven/project/inheritance/t04/ProjectInheritanceTest.java

            assertNotNull(set, "No artifacts");
            assertTrue(set.size() > 0, "No Artifacts");
            assertTrue(set.size() == 3, "Set size should be 3, is " + set.size());
    
            for (Object aSet : set) {
                Artifact artifact = (Artifact) aSet;
                System.out.println("Artifact: " + artifact.getDependencyConflictId() + " " + artifact.getVersion()
                        + " Optional=" + (artifact.isOptional() ? "true" : "false"));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/wasm/wasmobj.go

    	for name, reg := range Register {
    		registerNames[reg-MINREG] = name
    	}
    }
    
    func rconv(r int) string {
    	return registerNames[r-MINREG]
    }
    
    var unaryDst = map[obj.As]bool{
    	ASet:          true,
    	ATee:          true,
    	ACall:         true,
    	ACallIndirect: true,
    	ABr:           true,
    	ABrIf:         true,
    	ABrTable:      true,
    	AI32Store:     true,
    	AI64Store:     true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  7. pkg/controller/cronjob/utils_test.go

    		},
    		{
    			name:     "only the second has a nil start time",
    			input:    []*batchv1.Job{aSet, bNil},
    			expected: []*batchv1.Job{aSet, bNil},
    		},
    		{
    			name:     "both have non-nil, equal start time",
    			input:    []*batchv1.Job{bSet, aSet},
    			expected: []*batchv1.Job{aSet, bSet},
    		},
    		{
    			name:     "both have non-nil, different start time",
    			input:    []*batchv1.Job{aSetLater, bSet},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.29.md

    - cloud.google.com/go/appengine: v1.7.1 → v1.8.1
    - cloud.google.com/go/area120: v0.7.1 → v0.8.1
    - cloud.google.com/go/artifactregistry: v1.13.0 → v1.14.1
    - cloud.google.com/go/asset: v1.13.0 → v1.14.1
    - cloud.google.com/go/assuredworkloads: v1.10.0 → v1.11.1
    - cloud.google.com/go/automl: v1.12.0 → v1.13.1
    - cloud.google.com/go/baremetalsolution: v0.5.0 → v1.1.1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/wasm/a.out.go

    const (
    	/* mark flags */
    	DONE          = 1 << iota
    	PRESERVEFLAGS // not allowed to clobber flags
    )
    
    /*
     *	wasm
     */
    const (
    	AGet = obj.ABaseWasm + obj.A_ARCHSPECIFIC + iota
    	ASet
    	ATee
    	ANot // alias for I32Eqz
    
    	// The following are low-level WebAssembly instructions.
    	// Their order matters, since it matches the opcode encoding.
    	// Gaps in the encoding are indicated by comments.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 02 05:28:55 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.28.md

    - cloud.google.com/go/apigeeregistry: v0.6.0
    - cloud.google.com/go/appengine: v1.7.1
    - cloud.google.com/go/area120: v0.7.1
    - cloud.google.com/go/artifactregistry: v1.13.0
    - cloud.google.com/go/asset: v1.13.0
    - cloud.google.com/go/assuredworkloads: v1.10.0
    - cloud.google.com/go/automl: v1.12.0
    - cloud.google.com/go/baremetalsolution: v0.5.0
    - cloud.google.com/go/batch: v0.7.0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
Back to top