Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 101 for Imported (0.25 sec)

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

    op. The order of ops will be preserved. Functions named `main` with no
    `tf.entry_function` attribute will not be pruned, as such graphs/functions may
    have been imported from a V1 TensorFlow graph, where feeds/fetches/targets are
    not provided at certain stages of IR transformation (e.g. pre-placement).
    
    Option `ops-to-preserve` allows to specify ops that should not be pruned,
    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. src/cmd/cgo/gcc.go

    	} else if escaped {
    		err = errors.New("unfinished escaping")
    	}
    	return args, err
    }
    
    // Translate rewrites f.AST, the original Go input, to remove
    // references to the imported package C, replacing them with
    // references to the equivalent Go types, functions, and variables.
    func (p *Package) Translate(f *File) {
    	for _, cref := range f.Ref {
    		// Convert C.ulong to C.unsigned long, etc.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. src/cmd/go/go_test.go

    	tg.grepStderr("matched no packages", "list should have reported that pattern matched no packages")
    	tg.grepStderrNot("symlink", "list should not have reported symlink")
    
    	tg.run("list", "example/xx/...")
    	tg.grepStdoutNot(".", "list should not have matched anything")
    	tg.grepStderr("matched no packages", "list should have reported that pattern matched no packages")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  4. tensorflow/BUILD

        ],
    )
    
    # Packages that use private types symbols, until they are exported.
    # TODO(b/154650521) Remove.
    # If this is modified, then copy.bara.sky must also be modified.
    package_group(name = "types_allowlist")
    
    # Packages that use StructuredTensors.
    # TODO(b/159007891) Remove this package once StructuredTensor is exported.
    # LINT.IfChange
    package_group(name = "structured_tensor_allowlist")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

      - On artifact foo-1.0.jar (org:foo:1.0) multiple problems reported:
          - in repository 'maven': artifact was signed but all keys were ignored
          - in repository 'maven': checksum is missing from verification metadata.
      - On artifact foo-1.0.pom (org:foo:1.0) multiple problems reported:
          - in repository 'maven': artifact was signed but all keys were ignored
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  6. pkg/kubelet/nodestatus/setters_test.go

    			},
    			expectedAddresses: nil,
    			shouldError:       true,
    		},
    		{
    			name:          "no cloud reported hostnames",
    			nodeAddresses: []v1.NodeAddress{},
    			expectedAddresses: []v1.NodeAddress{
    				{Type: v1.NodeHostName, Address: testKubeletHostname}, // detected hostname is auto-added in the absence of cloud-reported hostnames
    			},
    			shouldError: false,
    		},
    		{
    			name: "cloud reports hostname, no override",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  7. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    			if volume.Name == volumeName {
    				result = true
    			}
    		}
    
    		if result == isAttached {
    			t.Logf("Volume <%v> is reported as attached to node <%v>: %v", volumeName, nodeName, result)
    			return true, nil
    		}
    		lastErr = fmt.Errorf("Check volume <%v> is reported as attached to node <%v>, got %v, expected %v",
    			volumeName,
    			nodeName,
    			result,
    			isAttached)
    		return false, nil
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

    class ConfigurationCacheProblemReportingIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
    
        def "input files are reported with relative path"() {
            given:
            file('provider.txt').text = 'provider'
            file('fis-path.txt').text = 'fis-path'
            file('fis-file.txt').text = 'fis-file'
            file('fis-abs.txt').text = 'fis-abs'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Use the HTML report and this documentation to help you in this journey.
    +
    Start with problems reported when _storing_ the configuration cache.
    Once fixed, you can rely on a valid cached configuration phase and move on to fixing problems reported when _loading_ the configuration cache if any.
    
    Report encountered issues::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    ----
    include::{snippetsPath}/native-binaries/custom-layout/groovy/build.gradle[tag=cpp-sources]
    ----
    
    For a library named 'main', header files in `src/main/headers` are considered the "public" or "exported" headers. Header files that should not be exported should be placed inside the `src/main/cpp` directory (though be aware that such header files should always be referenced in a manner relative to the file including them).
    
    [[sec:c_sources]]
    === C sources
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
Back to top