Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,594 for ridentifier (0.16 sec)

  1. maven-core/src/main/java/org/apache/maven/execution/ProfileActivation.java

        }
    
        /**
         * Mark a profile as required and activated.
         * @param id The identifier of the profile.
         */
        public void activateRequiredProfile(String id) {
            this.activations.put(id, ActivationSettings.ACTIVATION_REQUIRED);
        }
    
        /**
         * Mark a profile as optional and activated.
         * @param id The identifier of the profile.
         */
        public void activateOptionalProfile(String id) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/SymbolByFqName.kt

            val testFileText = FileUtil.loadFile(filePath.toFile())
            val identifier = testFileText.lineSequence().first { line ->
                SymbolData.identifiers.any { identifier ->
                    line.startsWith(identifier) || line.startsWith("// $identifier")
                }
            }
            return SymbolData.create(identifier.removePrefix("// "))
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/cache/internal/GeneratedGradleJarCache.java

        String CACHE_DISPLAY_NAME = "Generated Gradle JARs cache";
    
        /**
         * Returns the generated jar uniquely identified by {@code identifier}.
         *
         * If the jar is not found in the cache the given {@code creator} action will be invoked to create it.
         *
         * @param identifier the jar identifier (for example, {@code "api"}).
         * @param creator the action that will create the file should it not be found in the cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:49 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. src/go/types/resolver_test.go

    		t.Errorf("simultaneous uses/defs = %s, want %s", got, want)
    	}
    
    	// any left-over identifiers didn't exist in the source
    	for x := range uses {
    		t.Errorf("%s: identifier %s not present in source", fset.Position(x.Pos()), x.Name)
    	}
    	for x := range defs {
    		t.Errorf("%s: identifier %s not present in source", fset.Position(x.Pos()), x.Name)
    	}
    
    	// TODO(gri) add tests to check ImplicitObj callbacks
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ComponentVariantIdentifier.java

     */
    
    package org.gradle.api.artifacts;
    
    import org.gradle.api.artifacts.component.ComponentIdentifier;
    
    /**
     * Identifies a variant of a component by component identifier and variant name.
     *
     * @since 6.0
     */
    public interface ComponentVariantIdentifier {
    
        /**
         * Returns the component identifier.
         */
        ComponentIdentifier getId();
    
        /**
         * Returns the variant name.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. test/fixedbugs/issue11359.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // identifiers beginning with non-ASCII digits were incorrectly accepted.
    // issue 11359.
    
    package p
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 16 20:38:42 UTC 2015
    - 333 bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/compile/internal/types2/resolver_test.go

    		t.Errorf("simultaneous uses/defs = %s, want %s", got, want)
    	}
    
    	// any left-over identifiers didn't exist in the source
    	for x := range uses {
    		if !foundUses[x] {
    			t.Errorf("%s: identifier %s not present in source", x.Pos(), x.Value)
    		}
    	}
    	for x := range defs {
    		if !foundDefs[x] {
    			t.Errorf("%s: identifier %s not present in source", x.Pos(), x.Value)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/utils/InstrumentationClasspathMerger.java

                if (artifact.getId() instanceof TransformedComponentFileArtifactIdentifier) {
                    TransformedComponentFileArtifactIdentifier identifier = (TransformedComponentFileArtifactIdentifier) artifact.getId();
                    return new OriginalArtifactIdentifier(identifier.getOriginalFileName(), identifier.getComponentIdentifier());
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 19:11:55 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. src/go/parser/resolver.go

    	}
    }
    
    // The unresolved object is a sentinel to mark identifiers that have been added
    // to the list of unresolved identifiers. The sentinel is only used for verifying
    // internal consistency.
    var unresolved = new(ast.Object)
    
    // If x is an identifier, resolve attempts to resolve x by looking up
    // the object it denotes. If no object is found and collectUnresolved is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 15.8K bytes
    - Viewed (0)
Back to top