Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 820 for exportId (0.41 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/initialization/DefaultClassLoaderScope.java

        }
    
        @Override
        public ClassLoaderScope export(ClassPath classPath) {
            if (classPath.isEmpty()) {
                return this;
            }
    
            assertNotLocked();
            if (exportingClassLoader != null) {
                exportingClassLoader.addParent(loader(id.exportId(), parent.getExportClassLoader(), classPath));
            } else {
                export = export.plus(classPath);
            }
    
            return this;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. docs/distributed/DESIGN.md

    ```
    minio server http://host{1...2}/export{1...8}
    ```
    
    Expected expansion
    
    ```
    > http://host1/export1
    > http://host2/export1
    > http://host1/export2
    > http://host2/export2
    > http://host1/export3
    > http://host2/export3
    > http://host1/export4
    > http://host2/export4
    > http://host1/export5
    > http://host2/export5
    > http://host1/export6
    > http://host2/export6
    > http://host1/export7
    > http://host2/export7
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 23:04:20 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. src/go/ast/filter.go

    			}
    			return true
    		}
    	case *TypeSpec:
    		if f(s.Name.Name) {
    			if export {
    				filterType(s.Type, f, export)
    			}
    			return true
    		}
    		if !export {
    			// For general filtering (not just exports),
    			// filter type even if name is not filtered
    			// out.
    			// If the type contains filtered elements,
    			// keep the declaration.
    			return filterType(s.Type, f, export)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/util/exportto.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package util
    
    // IsExportToAllNamespaces returns true if export to applies to all namespaces
    // and false if it is set to namespace local.
    func IsExportToAllNamespaces(exportTos []string) bool {
    	exportedToAll := false
    	for _, e := range exportTos {
    		if e == ExportToAllNamespaces {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 08 15:13:29 UTC 2022
    - 1K bytes
    - Viewed (0)
  5. cmd/endpoint-ellipses_test.go

    		// Valid inputs.
    		{":9000", []string{"/export1"}, true},
    		{":9000", []string{"/export1", "/export2", "/export3", "/export4"}, true},
    		{":9000", []string{"/export1{1...64}"}, true},
    		{":9000", []string{"/export1{01...64}"}, true},
    		{":9000", []string{"/export1{1...32}", "/export1{33...64}"}, true},
    		{":9001", []string{"http://localhost:9001/export{1...64}"}, true},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/virtualservice_destinationhosts.yaml

    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: service-entry-exported
      namespace: other
    spec:
      exportTo:
        - "default"
      hosts:
      - "abc.bookinfo.com" # This ServiceEntry matches a destination host in a virtualService in another namespace
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: reviews
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 21 21:37:53 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  7. releasenotes/notes/47835-otlp-http-exporter.yaml

    docs:
     - '[reference] https://istio.io/latest/docs/reference/config/istio.mesh.v1alpha1/#MeshConfig-ExtensionProvider-OpenTelemetryTracingProvider'
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 31 08:51:36 UTC 2024
    - 400 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/tac/tflite_import_export.h

      mlir::MLIRContext context_;
      llvm::SourceMgr source_mgr_;
      std::unique_ptr<mlir::SourceMgrDiagnosticHandler> source_mgr_handler_;
    };
    
    // TAC Exporter. It exports the provided Module to a tflite file.
    class TfLiteExporter : public mlir::TFL::tac::TacExporter {
     public:
      // Exporter configuration options.
      struct Options {
        bool export_runtime_metadata = false;
        bool output_mlir = false;
        std::string output_file_name;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/noder/export.go

    	data.WriteByte('u')
    	writeUnifiedExport(&data)
    
    	// The linker also looks for the $$ marker - use char after $$ to distinguish format.
    	out.WriteString("\n$$B\n") // indicate binary export format
    	io.Copy(out, &data)
    	out.WriteString("\n$$\n")
    
    	if base.Debug.Export != 0 {
    		fmt.Printf("BenchmarkExportSize:%s 1 %d bytes\n", base.Ctxt.Pkgpath, data.Len())
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 25 21:16:32 UTC 2023
    - 683 bytes
    - Viewed (0)
  10. pkg/config/visibility/visibility.go

    func (v Instance) Validate() (errs error) {
    	switch v {
    	case Private, Public:
    		return nil
    	case None:
    		return fmt.Errorf("exportTo ~ (none) is not allowed for Istio configuration objects")
    	default:
    		if !labels.IsDNS1123Label(string(v)) {
    			return fmt.Errorf("only .,*, or a valid DNS 1123 label is allowed as exportTo entry")
    		}
    	}
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 09 07:58:12 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top