Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,794 for baseIdx (0.13 sec)

  1. maven-builder-support/src/main/java/org/apache/maven/building/Problem.java

        String getSource();
    
        /**
         * Gets the one-based index of the line containing the problem. The line number should refer to some text file that
         * is given by {@link #getSource()}.
         *
         * @return The one-based index of the line containing the problem or a non-positive value if unknown.
         */
        int getLineNumber();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. plugin/pkg/admission/eventratelimit/limitenforcer.go

    }
    
    func getServerKey(attr admission.Attributes) string {
    	return ""
    }
    
    // getNamespaceKey returns a cache key that is based on the namespace of the event request
    func getNamespaceKey(attr admission.Attributes) string {
    	return attr.GetNamespace()
    }
    
    // getUserKey returns a cache key that is based on the user of the event request
    func getUserKey(attr admission.Attributes) string {
    	userInfo := attr.GetUserInfo()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 08 02:31:37 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/building/TransformerContext.java

        /**
         * Get the model based on the path when resolving the parent based on relativePath.
         *
         * @param from    the requiring model
         * @param pomFile the path to the pomFile
         * @return the model, otherwise {@code null}
         */
        Model getRawModel(Path from, Path pomFile);
    
        /**
         * Get the model from the reactor based on the groupId and artifactId when resolving reactor dependencies.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 07 08:20:52 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. maven-settings-builder/src/main/java/org/apache/maven/settings/building/SettingsProblem.java

        String getSource();
    
        /**
         * Gets the one-based index of the line containing the problem. The line number should refer to some text file that
         * is given by {@link #getSource()}.
         *
         * @return The one-based index of the line containing the problem or a non-positive value if unknown.
         */
        int getLineNumber();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/initialization/ProjectSpecsTest.groovy

        }
    
        def "project dir based spec"() {
            given:
            StartParameter parameter = new StartParameter()
            parameter.setProjectDir(projectDir)
            parameter.setCurrentDir(currentDir)
    
            expect:
            ProjectSpecs.forStartParameter(parameter, Stub(SettingsInternal)).class == ProjectDirectoryProjectSpec
        }
    
        def "current dir based spec"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 27 03:42:56 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  6. releasenotes/notes/revision-tag-default-validation.yaml

        through the default tag will also win leader elections and assume singleton cluster responsibilities.
    
    upgradeNotes:
      - title: Default revision must be switched when performing a revision-based upgrade.
        content: |
          When installing a new Istio control plane revision the previous resource validator will remain unchanged to prevent
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 11 16:58:48 UTC 2021
    - 956 bytes
    - Viewed (0)
  7. pilot/pkg/networking/apigen/apigen.go

    // TODO: support WorkloadEntry - to generate endpoints (equivalent with EDS)
    // TODO: based on lessons from MCP, we want to send 'chunked' responses, like apiserver does.
    // A first attempt added a 'sync' record at the end. Based on feedback and common use, a
    // different approach can be used - for large responses, we can mark the last one as 'hasMore'
    // by adding a field to the envelope.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 05 19:01:38 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. pkg/serviceaccount/metrics.go

    			Help:           "Cumulative stale projected service account tokens used",
    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    
    	// mauallyCreatedTokensTotal is the number of manually created secret-based long lived tokens.
    	manuallyCreatedTokensTotal = metrics.NewCounter(
    		&metrics.CounterOpts{
    			Subsystem:      kubeServiceAccountSubsystem,
    			Name:           "legacy_manual_token_uses_total",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 03:52:06 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/ComponentMetadataRuleContainer.java

    import java.util.Collection;
    import java.util.Iterator;
    import java.util.List;
    import java.util.function.Consumer;
    
    /**
     * Container for registered ComponentMetadataRules, either class based or closure / action based.
     */
    class ComponentMetadataRuleContainer implements Iterable<MetadataRuleWrapper> {
        private final List<MetadataRuleWrapper> rules = Lists.newArrayListWithExpectedSize(10);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. pkg/serviceaccount/legacy.go

    				audit.AddAuditAnnotation(ctx, "authentication.k8s.io/legacy-token-autogenerated-secret", secret.Name)
    				autoGeneratedTokensTotal.WithContext(ctx).Inc()
    				break
    			}
    		}
    
    		// Check if it's a manually created secret-based token
    		if !autoGenerated {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 08:32:23 UTC 2023
    - 8.4K bytes
    - Viewed (0)
Back to top