Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 437 for context0 (0.19 sec)

  1. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Contexts.kt

            }
            isolate
        }
    
        protected
        fun getCodec() = currentCodec
    
        private
        val contexts = ArrayList<Pair<T?, Codec<Any?>>>()
    
        override fun push(codec: Codec<Any?>) {
            contexts.add(0, Pair(currentIsolate, currentCodec))
            currentCodec = codec
        }
    
        override fun push(owner: IsolateOwner) {
            push(owner, currentCodec)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. pilot/pkg/model/context.go

    		return e.NetworksWatcher.Networks()
    	}
    	return nil
    }
    
    // SetPushContext sets the push context with lock protected
    func (e *Environment) SetPushContext(pc *PushContext) {
    	e.mutex.Lock()
    	defer e.mutex.Unlock()
    	e.pushContext = pc
    }
    
    // PushContext returns the push context with lock protected
    func (e *Environment) PushContext() *PushContext {
    	e.mutex.RLock()
    	defer e.mutex.RUnlock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (1)
  3. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/resolver/AbstractResolveReferenceTest.kt

            val marker = caret.fullTag
            val contexts: List<ResolveTestCaseContext<KtReference?>> = findReferencesAtCaret(file, caret.offset).map { reference ->
                ResolveTestCaseContext(element = reference, context = reference.element, marker = marker)
            }
    
            contexts.ifEmpty {
                listOf(ResolveTestCaseContext<KtReference?>(element = null, context = null, marker = marker))
            }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:01 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. cmd/api-response.go

    		content.Owner = owner
    		content.VersionID = object.VersionID
    		if content.VersionID == "" {
    			content.VersionID = nullVersionID
    		}
    		content.IsLatest = object.IsLatest
    		content.isDeleteMarker = object.DeleteMarker
    		versions = append(versions, content)
    	}
    
    	data.Name = bucket
    	data.Versions = versions
    	data.EncodingType = encodingType
    	data.Prefix = s3EncodeName(prefix, encodingType)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  5. pkg/test/framework/components/istio/cleanup.go

    		if e := c.Kube().CoreV1().Secrets(i.cfg.SystemNamespace).DeleteCollection(
    			context.Background(), metav1.DeleteOptions{}, metav1.ListOptions{}); e != nil {
    			err = multierror.Append(err, e)
    		}
    		if e := c.Kube().CoreV1().ConfigMaps(i.cfg.SystemNamespace).DeleteCollection(
    			context.Background(), metav1.DeleteOptions{}, metav1.ListOptions{}); e != nil {
    			err = multierror.Append(err, e)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. internal/grid/handlers.go

    func setCaller(ctx context.Context, cl *RemoteClient) context.Context {
    	return context.WithValue(ctx, ctxCallerKey{}, cl)
    }
    
    func setSubroute(ctx context.Context, s string) context.Context {
    	return context.WithValue(ctx, ctxSubrouteKey{}, s)
    }
    
    // StreamTypeHandler is a type safe handler for streaming requests.
    type StreamTypeHandler[Payload, Req, Resp RoundTripper] struct {
    	WithPayload bool
    
    	// Override the default capacities (1)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  7. pkg/kubelet/container/runtime.go

    	ListImages(ctx context.Context) ([]Image, error)
    	// RemoveImage removes the specified image.
    	RemoveImage(ctx context.Context, image ImageSpec) error
    	// ImageStats returns Image statistics.
    	ImageStats(ctx context.Context) (*ImageStats, error)
    	// ImageFsInfo returns a list of file systems for containers/images
    	ImageFsInfo(ctx context.Context) (*runtimeapi.ImageFsInfoResponse, error)
    	// GetImageSize returns the size of the image
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  8. cmd/storage-rest-client.go

    func (client *storageRESTClient) MakeVolBulk(ctx context.Context, volumes ...string) (err error) {
    	return errInvalidArgument
    }
    
    // MakeVol - create a volume on a remote disk.
    func (client *storageRESTClient) MakeVol(ctx context.Context, volume string) (err error) {
    	return errInvalidArgument
    }
    
    // ListVols - List all volumes on a remote disk.
    func (client *storageRESTClient) ListVols(ctx context.Context) (vols []VolInfo, err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go

    	}
    
    	expectedCtx, exists := config.Contexts[config.CurrentContext]
    	if !exists {
    		return errors.Errorf("failed to find expected context %s", config.CurrentContext)
    	}
    	expectedCluster := expectedCtx.Cluster
    	currentCtx, exists := currentConfig.Contexts[currentConfig.CurrentContext]
    	if !exists {
    		return errors.Errorf("failed to find CurrentContext in Contexts of the kubeconfig file %s", kubeConfigFilePath)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 27K bytes
    - Viewed (0)
  10. pkg/test/framework/suite.go

    	s.skipFn = func(ctx resource.Context) bool {
    		return true
    	}
    	return s
    }
    
    func (s *suiteImpl) SkipIf(reason string, fn resource.ShouldSkipFn) Suite {
    	s.skipMessage = reason
    	s.skipFn = fn
    	return s
    }
    
    func (s *suiteImpl) RequireMinClusters(minClusters int) Suite {
    	if minClusters <= 0 {
    		minClusters = 1
    	}
    
    	fn := func(ctx resource.Context) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top