Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for keydata (0.33 sec)

  1. cmd/kubelet/app/server.go

    		// a high powered certificate to the kubelet as --kubeconfig and expects
    		// it to be rotated out immediately
    		clientConfig.CertData,
    		clientConfig.KeyData,
    
    		clientConfig.CertFile,
    		clientConfig.KeyFile,
    		newClientsetFn,
    	)
    }
    
    func kubeClientConfigOverrides(s *options.KubeletServer, clientConfig *restclient.Config) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    		etext := ldr.Lookup("runtime.etext", 0)
    		edata := ldr.Lookup("runtime.edata", 0)
    		end := ldr.Lookup("runtime.end", 0)
    		ldr.SetSymExtname(etext, "runtime.etext")
    		ldr.SetSymExtname(edata, "runtime.edata")
    		ldr.SetSymExtname(end, "runtime.end")
    		ctxt.xdefine("_etext", ldr.SymType(etext), ldr.SymValue(etext))
    		ctxt.xdefine("_edata", ldr.SymType(edata), ldr.SymValue(edata))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  3. cmd/iam.go

    	usersPrefix := strings.HasPrefix(event.keyPath, iamConfigUsersPrefix)
    	groupsPrefix := strings.HasPrefix(event.keyPath, iamConfigGroupsPrefix)
    	stsPrefix := strings.HasPrefix(event.keyPath, iamConfigSTSPrefix)
    	svcPrefix := strings.HasPrefix(event.keyPath, iamConfigServiceAccountsPrefix)
    	policyPrefix := strings.HasPrefix(event.keyPath, iamConfigPoliciesPrefix)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. cmd/iam-etcd-store.go

    	}
    	return err
    }
    
    func (ies *IAMEtcdStore) watch(ctx context.Context, keyPath string) <-chan iamWatchEvent {
    	ch := make(chan iamWatchEvent)
    
    	// go routine to read events from the etcd watch channel and send them
    	// down `ch`
    	go func() {
    		for {
    		outerLoop:
    			watchCh := ies.client.Watch(ctx,
    				keyPath, etcd.WithPrefix(), etcd.WithKeysOnly())
    
    			for {
    				select {
    				case <-ctx.Done():
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

        public List<RemoteRepository> getRemoteRepositories() {
            return Collections.unmodifiableList(repositories);
        }
    
        @Nonnull
        @Override
        public SessionData getData() {
            org.eclipse.aether.SessionData data = session.getData();
            return new SessionData() {
                @Override
                public <T> void set(@Nonnull Key<T> key, @Nullable T value) {
                    data.set(key, value);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/DefaultScriptCompilationHandler.java

                return !isEmpty;
            }
    
            @Override
            public boolean getHasMethods() {
                return hasMethods;
            }
    
            @Override
            public M getData() {
                return metadata;
            }
    
            @Override
            public void onReuse() {
                if (scriptClass != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. cmd/iam-store.go

    	}
    	*d = doc
    	return nil
    }
    
    // key options
    type options struct {
    	ttl int64 // expiry in seconds
    }
    
    type iamWatchEvent struct {
    	isCreated bool // !isCreated implies a delete event.
    	keyPath   string
    }
    
    // iamCache contains in-memory cache of IAM data.
    type iamCache struct {
    	updatedAt time.Time
    
    	// map of policy names to policy definitions
    	iamPolicyDocsMap map[string]PolicyDoc
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

        @Nonnull
        Settings getSettings();
    
        @Nonnull
        LocalRepository getLocalRepository();
    
        @Nonnull
        List<RemoteRepository> getRemoteRepositories();
    
        @Nonnull
        SessionData getData();
    
        /**
         * Returns immutable user properties to use for interpolation. The user properties have been configured directly
         * by the user, e.g. via the {@code -Dkey=value} parameter on the command line.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  9. src/net/http/server.go

    func (w *response) WriteString(data string) (n int, err error) {
    	return w.write(len(data), nil, data)
    }
    
    // either dataB or dataS is non-zero.
    func (w *response) write(lenData int, dataB []byte, dataS string) (n int, err error) {
    	if w.conn.hijacked() {
    		if lenData > 0 {
    			caller := relevantCaller()
    			w.conn.server.logf("http: response.Write on hijacked connection from %s (%s:%d)", caller.Function, path.Base(caller.File), caller.Line)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      LogicalResult matchAndRewrite(OpTy op,
                                    PatternRewriter &rewriter) const override {
        auto data_type = mlir::dyn_cast<RankedTensorType>(op.getData().getType());
        if (!data_type) return failure();
        int64_t data_rank = data_type.getRank();
    
        auto segment_ids_type =
            mlir::dyn_cast<RankedTensorType>(op.getSegmentIds().getType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top