Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 440 for toTokens (1.67 sec)

  1. cmd/sftp-server.go

    	allowMACs := supportedMACs
    	var err error
    
    	for _, arg := range args {
    		tokens := strings.SplitN(arg, "=", 2)
    		if len(tokens) != 2 {
    			logger.Fatal(fmt.Errorf("invalid arguments passed to --sftp=%s", arg), "unable to start SFTP server")
    		}
    		switch tokens[0] {
    		case "address":
    			host, portStr, err := net.SplitHostPort(tokens[1])
    			if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. platforms/software/maven/src/testFixtures/groovy/org/gradle/integtests/fixtures/publish/maven/AbstractMavenPublishIntegTest.groovy

                String artifacts = params.additionalArtifacts.collect {
                    def tokens = it.ivyTokens
                    """
                        artifact {
                            name = '${sq(tokens.artifact)}'
                            classifier = '${sq(tokens.classifier)}'
                            type = '${sq(tokens.type)}'
                        }"""
                }.join('\n')
                extraArtifacts = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/benchmark_main.template

    // Generated by the tf_library build rule.  DO NOT EDIT!
    //
    // This file contains the main function and logic for benchmarking code
    // generated by tfcompile.  All tokens of the form `{{TFCOMPILE_*}}` must be
    // rewritten to real values before this file can be compiled.
    //
    //    TFCOMPILE_HEADER    : Path to the header file generated by tfcompile.
    //    TFCOMPILE_CPP_CLASS : Name of the C++ class generated by tfcompile.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 19 20:05:05 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. docs/site-replication/README.md

    Previously, site replication required the root credentials of peer sites to be identical. This is no longer necessary because STS tokens are now signed with the site replicator service account credentials, thus allowing flexibility in the independent management of root accounts across sites and the ability to disable root accounts eventually.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 26 21:30:28 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. pkg/serviceaccount/legacy.go

    		for _, ref := range serviceAccount.Secrets {
    			if ref.Name == secret.Name {
    				autoGenerated = true
    				warning.AddWarning(ctx, "", "Use tokens from the TokenRequest API or manually created secret-based tokens instead of auto-generated secret-based tokens.")
    				audit.AddAuditAnnotation(ctx, "authentication.k8s.io/legacy-token-autogenerated-secret", secret.Name)
    				autoGeneratedTokensTotal.WithContext(ctx).Inc()
    				break
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 08:32:23 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  6. cluster/gce/addons/konnectivity-agent/konnectivity-agent-ds.yaml

                      "--sync-interval-cap=30s",
                      "--probe-interval=5s",
                      "--keepalive-time=60s",
                      "--service-account-token-path=/var/run/secrets/tokens/konnectivity-agent-token",
                      "--agent-identifiers=ipv4=$(HOST_IP)"
                      ]
              env:
                - name: POD_NAME
                  valueFrom:
                    fieldRef:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 10:31:11 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sync/semaphore/semaphore.go

    		s.mu.Lock()
    		select {
    		case <-ready:
    			// Acquired the semaphore after we were canceled.
    			// Pretend we didn't and put the tokens back.
    			s.cur -= n
    			s.notifyWaiters()
    		default:
    			isFront := s.waiters.Front() == elem
    			s.waiters.Remove(elem)
    			// If we're at the front and there're extra tokens left, notify other waiters.
    			if isFront && s.size > s.cur {
    				s.notifyWaiters()
    			}
    		}
    		s.mu.Unlock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. platforms/software/antlr/src/integTest/groovy/org/gradle/api/plugins/antlr/Antlr4RelocationIntegrationTest.groovy

                }
            """
        }
    
        @Override
        protected extractResultsFrom(TestFile projectDir) {
            [
                "org/acme/Test.tokens",
                "org/acme/TestBaseListener.java",
                "org/acme/TestLexer.java",
                "org/acme/TestLexer.tokens",
                "org/acme/TestListener.java",
                "org/acme/TestParser.java",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/TokenLookup.java

            }
            return tokensFor.get(expression);
        }
    
        void addTokensFor(Expression expression, Expression tokens) {
            if (tokensFor == null) {
                tokensFor = LinkedHashMultimap.create();
            }
            tokensFor.put(expression, tokens);
        }
    
        boolean hasTokensFor(Expression expression) {
            return tokensFor != null && tokensFor.containsKey(expression);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/suggest/settings/AnalyzerSettingsTest.java

            final List<AnalyzeToken> tokens = analyzer.analyze(text, "", null);
            final List<AnalyzeToken> readingTokens = analyzer.analyzeAndReading(text, "", null);
    
            int matchCount = 0;
            for (int i = 0; i < tokens.size(); i++) {
                final String term = tokens.get(i).getTerm();
                final String reading = readingTokens.get(i).getTerm();
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top