Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,585 for Identifier (0.19 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/helpers.go

    type jsonFallbackEncoder struct {
    	encoder    runtime.Encoder
    	identifier runtime.Identifier
    }
    
    func NewJSONFallbackEncoder(encoder runtime.Encoder) runtime.Encoder {
    	result := map[string]string{
    		"name": "fallback",
    		"base": string(encoder.Identifier()),
    	}
    	identifier, err := gojson.Marshal(result)
    	if err != nil {
    		klog.Fatalf("Failed marshaling identifier for jsonFallbackEncoder: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 20:39:55 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ProgramParser.kt

    ) {
        val pluginManagementBlock = topLevelBlocks.find { it.identifier == TopLevelBlockId.pluginManagement } ?: return
        val firstTopLevelBlock = topLevelBlocks.first()
        if (firstTopLevelBlock.identifier != TopLevelBlockId.pluginManagement) {
            throw UnexpectedBlockOrder(firstTopLevelBlock.identifier, firstTopLevelBlock.range, pluginManagementBlock.identifier)
        }
    }
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/CombinatorsTest.kt

    import org.jetbrains.kotlin.lexer.KtTokens.IDENTIFIER
    import org.junit.Test
    
    
    class CombinatorsTest {
    
        private
        val combinator = Combinator(ignoresComments = false, ignoresNewline = false)
    
        @Test
        fun `can recurse`() {
            var parser by reference<String>()
            parser = combinator.paren(parser) + combinator.token(IDENTIFIER) { tokenText }
    
            assertSuccess(parser("ok"), "ok")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/eventbus/EventBus.java

      public EventBus() {
        this("default");
      }
    
      /**
       * Creates a new EventBus with the given {@code identifier}.
       *
       * @param identifier a brief name for this bus, for logging purposes. Should be a valid Java
       *     identifier.
       */
      public EventBus(String identifier) {
        this(
            identifier,
            MoreExecutors.directExecutor(),
            Dispatcher.perThreadDispatchQueue(),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 17 16:01:41 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/DefaultLibraryComponentSelector.java

            return variant;
        }
    
        @Override
        public boolean matchesStrictly(ComponentIdentifier identifier) {
            assert identifier != null : "identifier cannot be null";
    
            if (identifier instanceof LibraryBinaryIdentifier) {
                LibraryBinaryIdentifier projectComponentIdentifier = (LibraryBinaryIdentifier) identifier;
                return Objects.equal(projectComponentIdentifier.getProjectPath(), projectPath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/VirtualComponentHelper.java

    import org.gradle.internal.component.external.model.VirtualComponentIdentifier;
    
    public class VirtualComponentHelper {
        /**
         * Decorates a component identifier, marking it as virtual.
         * @param id the original component identifier
         * @return a virtual component identifier
         */
        public static VirtualComponentIdentifier makeVirtual(final ComponentIdentifier id) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. pkg/cluster/id.go

    // limitations under the License.
    
    package cluster
    
    import "istio.io/istio/pkg/util/identifier"
    
    // ID is the unique identifier for a k8s cluster.
    type ID string
    
    func (id ID) Equals(other ID) bool {
    	return identifier.IsSameOrEmpty(string(id), string(other))
    }
    
    func (id ID) String() string {
    	return string(id)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 24 22:10:04 UTC 2021
    - 866 bytes
    - Viewed (0)
  8. pkg/config/schema/codegen/common.go

    		{
    			Resource: &ast.Resource{Identifier: "Address", Kind: "Address", Version: "internal", Group: "internal"},
    		},
    		{
    			Resource: &ast.Resource{Identifier: "DNSName", Kind: "DNSName", Version: "internal", Group: "internal"},
    		},
    	}, inp.Entries...)
    
    	sort.Slice(kindEntries, func(i, j int) bool {
    		return strings.Compare(kindEntries[i].Resource.Identifier, kindEntries[j].Resource.Identifier) < 0
    	})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/ProjectIdentifier.java

         *
         * @return the path, never null
         * @since 3.3
         */
        String getProjectPath();
    
        /**
         * Identifier of the build this project is a member of.
         *
         * @return build identifier, never null.
         */
        BuildIdentifier getBuildIdentifier();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/native/src/test/groovy/org/gradle/internal/nativeintegration/jansi/JansiLibraryFactoryTest.groovy

            when:
            JansiLibrary jansiLibrary = factory.create()
    
            then:
            1 * resolver.operatingSystem >> JansiOperatingSystemSupport.MAC_OS_X.identifier
            0 * resolver.platform
            jansiLibrary.platform == JansiOperatingSystemSupport.MAC_OS_X.identifier
            jansiLibrary.filename == MAC_OSX_LIB_FILENAME
            jansiLibrary.resourcePath ==  "/META-INF/native/" + jansiLibrary.path
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top