Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 655 for Identifier (0.23 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/encoding/Identifier.java

                return new Identifier(NON_PRECOMPOSED_NON_ASCII, "non-ascii");
            }
            return new Identifier(NON_ASCII_CHARS, "non-ascii");
        }
    
        public static Identifier getFileSystemReserved() {
            return new Identifier(FILESYSTEM_RESERVED_CHARS, "filesystem");
        }
    
        public static Identifier getXmlMarkup() {
            return new Identifier(XML_MARKUP_CHARS, "xml markup");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentIdentifierSerializerTest.groovy

            when:
            def result = serialize(identifier, serializer)
    
            then:
            result.identityPath == identifier.identityPath
            result.projectPath == identifier.projectPath
            result.buildTreePath == identifier.buildTreePath
            result.projectPath() == identifier.projectPath()
            result.projectName == identifier.projectName
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishValidationIntegTest.groovy

            def version = identifier.safeForFileName().decorate("revision")
            def extraValue = identifier.decorate("extra")
            def resolver = identifier.decorate("description")
            def branch = identifier.safeForBranch().decorate("branch")
            def status = identifier.safeForFileName().decorate("status")
            def module = ivyRepo.module(organisation, moduleName, version)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/model/principal.go

    )
    
    func principalAny() *rbacpb.Principal {
    	return &rbacpb.Principal{
    		Identifier: &rbacpb.Principal_Any{
    			Any: true,
    		},
    	}
    }
    
    func principalOr(principals []*rbacpb.Principal) *rbacpb.Principal {
    	return &rbacpb.Principal{
    		Identifier: &rbacpb.Principal_OrIds{
    			OrIds: &rbacpb.Principal_Set{
    				Ids: principals,
    			},
    		},
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 17 18:44:57 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  5. pkg/config/schema/codegen/templates/kind.go.tmpl

    	switch g {
    {{- range .Entries }}
    	{{- if not (or (eq .Resource.Identifier "Address") (eq .Resource.Identifier "DNSName")) }}
    		case gvk.{{.Resource.Identifier}}:
    			return {{.Resource.Identifier}}
    	{{- end }}
    {{- end }}
    	}
    
    	panic("unknown kind: " + g.String())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 07:19:38 UTC 2024
    - 862 bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/DependencyLockingGraphVisitorTest.groovy

            given:
            def identifier = newId(mid, '1.1')
            startWithoutLockState()
            addVisitedChangingNode(identifier)
    
            when:
            visitor.writeLocks()
    
            then:
            1 * dependencyLockingProvider.persistResolvedDependencies(lockId, _, singleton(identifier), singleton(identifier))
    
        }
    
        def 'ignores visited node that is to be ignored'() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingResult.java

    public interface ModelBuildingResult {
    
        /**
         * Gets the sequence of model identifiers that denote the lineage of models from which the effective model was
         * constructed. Model identifiers have the form {@code <groupId>:<artifactId>:<version>}. The first identifier from
         * the list denotes the model on which the model builder was originally invoked. The last identifier will always be
         * an empty string that by definition denotes the super POM.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/watch_tracker.go

    			w.watchCount[*identifier] += incr
    		}
    	}
    }
    
    func (w *watchTracker) forgetWatch(identifier *watchIdentifier, index *indexValue) ForgetWatchFunc {
    	return func() {
    		w.lock.Lock()
    		defer w.lock.Unlock()
    
    		w.updateIndexLocked(identifier, index, -1)
    		if w.watchCount[*identifier] == 0 {
    			delete(w.watchCount, *identifier)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/quantization/ir/.clang-tidy

    CheckOptions:
      # LINT.IfChange(check-options)
      - key:             readability-identifier-naming.ClassCase
        value:           CamelCase
      - key:             readability-identifier-naming.EnumCase
        value:           CamelCase
      - key:             readability-identifier-naming.FunctionCase
        value:           camelBack
      - key:             readability-identifier-naming.MemberCase
        value:           camelBack
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 29 18:55:28 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/jansi/JansiOperatingSystemSupport.java

        private final String identifier;
    
        static {
            for(JansiOperatingSystemSupport osSupport : values()) {
                MAPPING.put(osSupport.identifier, osSupport);
            }
        }
    
        JansiOperatingSystemSupport(String identifier) {
            this.identifier = identifier;
        }
    
        public String getIdentifier() {
            return identifier;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top