Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,052 for exportId (0.21 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/initialization/ClassLoaderScopeIdentifierTest.groovy

            root.localId() != root.exportId()
            root.exportId() != root.localId()
            root.exportId() == root.exportId()
        }
    
        def "creates child"() {
            def child = root.child(root.name)
    
            expect:
            child.localId() == child.localId()
            child.localId() != child.exportId()
            child.exportId() != child.localId()
            child.exportId() == child.exportId()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 05 18:43:41 UTC 2019
    - 2.7K bytes
    - Viewed (0)
  2. 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)
  3. subprojects/core/src/main/java/org/gradle/api/internal/initialization/ClassLoaderScopeIdentifier.java

        private static class Id implements ClassLoaderId {
            private final ClassLoaderScopeIdentifier identifier;
            private final boolean export;
    
            public Id(ClassLoaderScopeIdentifier identifier, boolean export) {
                this.identifier = identifier;
                this.export = export;
            }
    
            @Override
            public boolean equals(Object o) {
                if (this == o) {
                    return true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 03 07:46:21 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  4. 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)
  5. src/go/doc/exports.go

    	n := len(lit.Elts)
    	lit.Elts = filterExprList(lit.Elts, filter, export)
    	if len(lit.Elts) < n {
    		lit.Incomplete = true
    	}
    }
    
    func filterExprList(list []ast.Expr, filter Filter, export bool) []ast.Expr {
    	j := 0
    	for _, exp := range list {
    		switch x := exp.(type) {
    		case *ast.CompositeLit:
    			filterCompositeLit(x, filter, export)
    		case *ast.KeyValueExpr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  6. cluster/addons/fluentd-gcp/event-exporter.yaml

      selector:
        matchLabels:
          k8s-app: event-exporter
          version: v0.3.4
      template:
        metadata:
          labels:
            k8s-app: event-exporter
            version: v0.3.4
        spec:
          serviceAccountName: event-exporter-sa
          containers:
          - name: event-exporter
            image: gke.gcr.io/event-exporter:v0.3.4-gke.0
            command:
            - /event-exporter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 13 18:40:41 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  7. src/go/internal/gcimporter/testdata/exports.go

    // license that can be found in the LICENSE file.
    
    // This file is used to generate an object file which
    // serves as test file for gcimporter_test.go.
    
    package exports
    
    import "go/ast"
    
    // Issue 3682: Correctly read dotted identifiers from export data.
    const init1 = 0
    
    func init() {}
    
    const (
    	C0  int     = 0
    	C1          = 3.14159265
    	C2          = 2.718281828i
    	C3          = -123.456e-789
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top