Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 225 for toSend (0.1 sec)

  1. src/html/template/js.go

    // nextJSCtx returns the context that determines whether a slash after the
    // given run of tokens starts a regular expression instead of a division
    // operator: / or /=.
    //
    // This assumes that the token run does not include any string tokens, comment
    // tokens, regular expression literal tokens, or division operators.
    //
    // This fails on some valid but nonsensical JavaScript programs like
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/main/java/org/gradleinternal/buildinit/plugins/internal/maven/Maven2Gradle.java

                            String[] tokens = exclude.getValue().split(":");
                            Map<String, String> params = new LinkedHashMap<>();
                            params.put("group", tokens[0]);
                            if (tokens.length > 1 && !tokens[1].equals("*")) {
                                params.put("module", tokens[1]);
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 15:23:34 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/init.go

    		if err != nil {
    			return nil, err
    		}
    	}
    	return client, nil
    }
    
    // Tokens returns an array of token strings.
    func (d *initData) Tokens() []string {
    	tokens := []string{}
    	for _, bt := range d.cfg.BootstrapTokens {
    		tokens = append(tokens, bt.Token.String())
    	}
    	return tokens
    }
    
    // PatchesDir returns the folder where patches for components are stored
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 03:37:05 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/output/ztunnel.golden.yaml

              runAsNonRoot: false
              runAsUser: 0
            volumeMounts:
            - mountPath: /var/run/secrets/istio
              name: istiod-ca-cert
            - mountPath: /var/run/secrets/tokens
              name: istio-token
          nodeSelector:
            kubernetes.io/os: linux
          priorityClassName: system-node-critical
          serviceAccountName: ztunnel
          terminationGracePeriodSeconds: 30
          tolerations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 31 23:49:40 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/upgrade/postupgrade.go

    		errs = append(errs, errors.Wrap(err, "error uploading crisocket"))
    	}
    
    	// Create RBAC rules that makes the bootstrap tokens able to get nodes
    	if err := nodebootstraptoken.AllowBoostrapTokensToGetNodes(client); err != nil {
    		errs = append(errs, err)
    	}
    
    	// Create/update RBAC rules that makes the bootstrap tokens able to post CSRs
    	if err := nodebootstraptoken.AllowBootstrapTokensToPostCSRs(client); err != nil {
    		errs = append(errs, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyFileModule.groovy

            LinkedHashMap<String, Object> tokens = toTokens(options)
            M2CompatibleIvyPatternHelper.substitute(pattern, m2Compatible, tokens)
        }
    
        private LinkedHashMap<String, String> toTokens(Map<String, ?> options) {
            def artifact = toArtifact(options)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    // lexicographically without assigning any special meaning to tokens.
    func lineLess(li, lj *Line) bool {
    	for k := 0; k < len(li.Token) && k < len(lj.Token); k++ {
    		if li.Token[k] != lj.Token[k] {
    			return li.Token[k] < lj.Token[k]
    		}
    	}
    	return len(li.Token) < len(lj.Token)
    }
    
    // lineExcludeLess reports whether li should be sorted before lj for lines in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  8. cmd/kube-controller-manager/app/controllermanager.go

    		controllerContext.InformerFactory.Core().V1().Secrets(),
    		rootClientBuilder.ClientOrDie("tokens-controller"),
    		serviceaccountcontroller.TokensControllerOptions{
    			TokenGenerator: tokenGenerator,
    			RootCA:         rootCA,
    		},
    	)
    	if err != nil {
    		return nil, true, fmt.Errorf("error creating Tokens controller: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inject/list.yaml.injected

              - mountPath: /var/lib/istio/data
                name: istio-data
              - mountPath: /etc/istio/proxy
                name: istio-envoy
              - mountPath: /var/run/secrets/tokens
                name: istio-token
              - mountPath: /etc/istio/pod
                name: istio-podinfo
            initContainers:
            - args:
              - istio-iptables
              - -p
              - "15001"
              - -z
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/phases/init/certs.go

    	kubeadmutil "k8s.io/kubernetes/cmd/kubeadm/app/util"
    	"k8s.io/kubernetes/cmd/kubeadm/app/util/pkiutil"
    )
    
    var (
    	saKeyLongDesc = fmt.Sprintf(cmdutil.LongDesc(`
    		Generate the private key for signing service account tokens along with its public key, and save them into
    		%s and %s files.
    		
    		If both files already exist, kubeadm skips the generation step and existing files will be used.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 06:35:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top