Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,255 for yearly (0.11 sec)

  1. pkg/serviceaccount/claims_test.go

    			sa:   sa,
    			node: node,
    			// really fast
    			exp: 0,
    			// nil audience
    			aud: nil,
    			err: "token bound to Node object requested, but \"ServiceAccountTokenNodeBinding\" feature gate is disabled",
    		},
    		{
    			// node & pod with feature gate disabled
    			sa:   sa,
    			node: node,
    			pod:  pod,
    			// really fast
    			exp: 0,
    			// nil audience
    			aud: nil,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  2. src/crypto/tls/quic_test.go

    	if cliSecret.secret == nil {
    		t.Errorf("client did not receive early data write secret")
    	}
    	srvSecret := srv2.readSecret[QUICEncryptionLevelEarly]
    	if srvSecret.secret == nil {
    		t.Errorf("server did not receive early data read secret")
    	}
    	if cliSecret.suite != srvSecret.suite || !bytes.Equal(cliSecret.secret, srvSecret.secret) {
    		t.Errorf("client early data secret does not match server")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/GenerateEclipseProject.java

    import org.gradle.work.DisableCachingByDefault;
    
    import javax.inject.Inject;
    
    /**
     * Generates an Eclipse <code>.project</code> file. If you want to fine tune the eclipse configuration
     * <p>
     * At this moment nearly all configuration is done via {@link EclipseProject}.
     */
    @DisableCachingByDefault(because = "Not made cacheable, yet")
    public abstract class GenerateEclipseProject extends XmlGeneratorTask<Project> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/DefaultLifecyclesStub.java

                    PACKAGE.getPhase(),
                    "BEER",
                    INSTALL.getPhase());
    
            // The two phases below are really for future expansion, some would say they lack a drink
            // The point being that they do not really have to match the "real" stuff,
            List<String> stubCleanCycle = Arrays.asList(PRE_CLEAN.getPhase(), CLEAN.getPhase(), POST_CLEAN.getPhase());
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/sessions/KaBaseSessionProvider.kt

        }
    
        override fun beforeEnteringAnalysis(session: KtAnalysisSession, useSiteElement: KtElement) {
            // Catch issues with analysis on invalid PSI as early as possible.
            PsiUtilCore.ensureValid(useSiteElement)
    
            beforeEnteringAnalysis(session)
        }
    
        override fun beforeEnteringAnalysis(session: KtAnalysisSession, useSiteModule: KtModule) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/base/path.go

    	"sync"
    )
    
    var cwd string
    var cwdOnce sync.Once
    
    // UncachedCwd returns the current working directory.
    // Most callers should use Cwd, which caches the result for future use.
    // UncachedCwd is appropriate to call early in program startup before flag parsing,
    // because the -C flag may change the current directory.
    func UncachedCwd() string {
    	wd, err := os.Getwd()
    	if err != nil {
    		Fatalf("cannot determine current directory: %v", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 20 19:17:27 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/internal/lazyregexp/lazyre.go

    // needed. If the code is being run as part of tests, the regexp compiling will
    // happen immediately.
    func New(str string) *Regexp {
    	lr := &Regexp{str: str}
    	if inTest {
    		// In tests, always compile the regexps early.
    		lr.re()
    	}
    	return lr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. src/internal/lazyregexp/lazyre.go

    // needed. If the code is being run as part of tests, the regexp compiling will
    // happen immediately.
    func New(str string) *Regexp {
    	lr := &Regexp{str: str}
    	if inTest {
    		// In tests, always compile the regexps early.
    		lr.re()
    	}
    	return lr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 27 23:49:01 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  9. src/syscall/exec_windows_test.go

    		{`\\?\C:\Windows`, `\\?\C:\Windows`},
    		{`\\?\`, `\\?\`},
    		{`\\.\C:\Windows\`, `\\.\C:\Windows\`},
    		{`\\server\share\file`, `\\server\share\file`},
    		{`\\newserver\tempshare\really.txt`, `\\newserver\tempshare\really.txt`},
    	}
    	for _, test := range tests {
    		if got := syscall.EscapeArg(test.input); got != test.output {
    			t.Errorf("EscapeArg(%#q) = %#q, want %#q", test.input, got, test.output)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleDistribution.java

        boolean wrapperCanExecute(GradleVersion version);
    
        /**
         * Early versions had bugs that prevented any values having spaces in them in GRADLE_OPTS or JAVA_OPTS.
         *
         * See https://issues.gradle.org/browse/GRADLE-1730
         */
        boolean isSupportsSpacesInGradleAndJavaOpts();
    
        /**
         * The 'ivy' repository was introduced in Milestone-3, but early versions didn't work with spaces in the artifact pattern.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top