Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 338 for toSend (0.64 sec)

  1. pkg/controller/bootstrap/util.go

    		return "", "", false
    	}
    
    	tokenID = bootstrapsecretutil.GetData(secret, bootstrapapi.BootstrapTokenIDKey)
    	if len(tokenID) == 0 {
    		logger.V(3).Info("No key in Secret", "key", bootstrapapi.BootstrapTokenIDKey, "secret", klog.KObj(secret))
    		return "", "", false
    	}
    
    	if nameTokenID != tokenID {
    		logger.V(3).Info("Token ID doesn't match secret name", "tokenID", tokenID, "secretName", secret.Name)
    		return "", "", false
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 02:18:40 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParserTest.groovy

            ' A((,))'              | 'A'       | [tokens('(,)')]
            ' A((,,,), c)'         | 'A'       | [tokens('(,,,)'), token('c')]
            '_a ( p1 p2 p3 )'      | '_a'      | [tokens('p1 p2 p3')]
            '_a ( 1, (2+3) )'      | '_a'      | [token('1'), tokens('(2+3)')]
            '_a((, ) a b c)'       | '_a'      | [tokens('(,) a b c')]
            'func( (a) ( b ))'     | 'func'    | [tokens('(a)(b)')]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  3. src/compress/flate/huffman_bit_writer.go

    	// Write the tokens.
    	w.writeTokens(tokens, w.literalEncoding.codes, w.offsetEncoding.codes)
    }
    
    // indexTokens indexes a slice of tokens, and updates
    // literalFreq and offsetFreq, and generates literalEncoding
    // and offsetEncoding.
    // The number of literal and offset tokens is returned.
    func (w *huffmanBitWriter) indexTokens(tokens []token) (numLiterals, numOffsets int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:59:14 UTC 2022
    - 18.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/cached_token_authenticator_test.go

    	threadCount := []int{1, 16, 256}
    	for _, tokens := range tokenCount {
    		for _, threads := range threadCount {
    			newSingleBenchmark(tokens, threads).run(b)
    		}
    	}
    }
    
    func newSingleBenchmark(tokens, threads int) *singleBenchmark {
    	s := &singleBenchmark{
    		threadCount: threads,
    		tokenCount:  tokens,
    	}
    	s.makeTokens()
    	return s
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/groovyapplication/multi/app/App.groovy.template

    import static ${basePackagePrefix.raw}app.MessageUtils.getMessage
    
    import org.apache.commons.text.WordUtils
    
    class App {
        static void main(String[] args) {
            LinkedList tokens
            tokens = split(getMessage())
            String result = join(tokens)
            println(WordUtils.capitalize(result))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 548 bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/bootstraptoken/node/tlsbootstrap.go

    	"k8s.io/kubernetes/cmd/kubeadm/app/util/apiclient"
    )
    
    // AllowBootstrapTokensToPostCSRs creates RBAC rules in a way the makes Node Bootstrap Tokens able to post CSRs
    func AllowBootstrapTokensToPostCSRs(client clientset.Interface) error {
    	fmt.Println("[bootstrap-token] Configured RBAC rules to allow Node Bootstrap tokens to post CSRs in order for nodes to get long term certificate credentials")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 15 10:49:52 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/javaapplication/multi/app/App.java.template

    import org.apache.commons.text.WordUtils;
    
    public class App {
        public static void main(String[] args) {
            LinkedList tokens;
            tokens = split(getMessage());
            String result = join(tokens);
            System.out.println(WordUtils.capitalize(result));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 586 bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/helper/AccessTokenHelperTest.java

            List<String> tokens = new ArrayList<String>();
            for (int i = 0; i < NUM; i++) {
                tokens.add(accessTokenHelper.generateAccessToken());
            }
            for (int i = 0; i < NUM; i++) {
                assertFalse(tokens.get(i).isEmpty());
                for (int j = i + 1; j < NUM; j++) {
                    assertFalse(tokens.get(i).equals(tokens.get(j)));
                }
            }
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/DumpbinBinaryInfo.groovy

                // 013 00000000 SECT6  notype       Static       | .chks64
                def tokens = line.split('\\s+')
                def pipeIndex = tokens.findIndexOf { it == '|' }
                assert pipeIndex != -1
                return new BinaryInfo.Symbol(tokens[pipeIndex + 1], tokens[3].charAt(0), line.contains("External"))
            }
        }
    
        List<BinaryInfo.Symbol> listDebugSymbols() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. pkg/controller/bootstrap/tokencleaner_test.go

    	}
    
    	secret := newTokenSecret("tokenID", "tokenSecret")
    	addSecretExpiration(secret, timeString(2*time.Second))
    	secrets.Informer().GetIndexer().Add(secret)
    	cleaner.enqueueSecrets(secret)
    	expected := []core.Action{}
    	verifyFunc := func() {
    		cleaner.processNextWorkItem(context.TODO())
    		verifyActions(t, expected, cl.Actions())
    	}
    	// token has not expired currently
    	verifyFunc()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top