Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 631 for binder (0.08 sec)

  1. src/runtime/pinner.go

    func (p *Pinner) Pin(pointer any) {
    	if p.pinner == nil {
    		// Check the pinner cache first.
    		mp := acquirem()
    		if pp := mp.p.ptr(); pp != nil {
    			p.pinner = pp.pinnerCache
    			pp.pinnerCache = nil
    		}
    		releasem(mp)
    
    		if p.pinner == nil {
    			// Didn't get anything from the pinner cache.
    			p.pinner = new(pinner)
    			p.refs = p.refStore[:0]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/cryptobyte/builder.go

    func NewBuilder(buffer []byte) *Builder {
    	return &Builder{
    		result: buffer,
    	}
    }
    
    // NewFixedBuilder creates a Builder that appends its output into the given
    // buffer. This builder does not reallocate the output buffer. Writes that
    // would exceed the buffer's capacity are treated as an error.
    func NewFixedBuilder(buffer []byte) *Builder {
    	return &Builder{
    		result:    buffer,
    		fixedSize: true,
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/pkg/resource/builder.go

    // an empty list to clear modifiers.
    func (b *Builder) TransformRequests(opts ...RequestTransform) *Builder {
    	b.requestTransforms = opts
    	return b
    }
    
    // Subresource instructs the builder to retrieve the object at the
    // subresource path instead of the main resource path.
    func (b *Builder) Subresource(subresource string) *Builder {
    	b.subresource = subresource
    	return b
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 10:17:56 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/core/v1/persistentvolumesource.go

    	RBD                  *RBDPersistentVolumeSourceApplyConfiguration        `json:"rbd,omitempty"`
    	ISCSI                *ISCSIPersistentVolumeSourceApplyConfiguration      `json:"iscsi,omitempty"`
    	Cinder               *CinderPersistentVolumeSourceApplyConfiguration     `json:"cinder,omitempty"`
    	CephFS               *CephFSPersistentVolumeSourceApplyConfiguration     `json:"cephfs,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 13.5K bytes
    - Viewed (0)
  5. release/downloadIstioCandidate.sh

    printf "\n"
    BINDIR="$(cd "$NAME/bin" && pwd)"
    printf "Next Steps:\n"
    printf "See https://istio.io/latest/docs/setup/install/ to add Istio to your Kubernetes cluster.\n"
    printf "\n"
    printf "To configure the istioctl client tool for your workstation,\n"
    printf "add the %s directory to your environment path variable with:\n" "$BINDIR"
    printf "\t export PATH=\"\$PATH:%s\"\n" "$BINDIR"
    printf "\n"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 14:13:46 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-groovy/src/integTest/groovy/org/gradle/groovy/GroovyBasePluginIntegrationTest.groovy

                    def compileGroovyDestinationDir = compileGroovy.destinationDirectory
                    def binDir = file("$buildDir/bin")
                    doLast {
                        assert mainGroovyDestDir.get().asFile == compileGroovyDestinationDir.get().asFile
                        assert mainGroovyDestDir.get().asFile == binDir
                    }
                }
            '''
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. pkg/scheduler/apis/config/validation/validation.go

    			extenderManagedResources.Insert(resource.Name)
    		}
    	}
    	if binders > 1 {
    		errs = append(errs, field.Invalid(fldPath, fmt.Sprintf("found %d extenders implementing bind", binders), "only one extender can implement bind"))
    	}
    	return errs
    }
    
    // validateExtendedResourceName checks whether the specified name is a valid
    // extended resource name.
    func validateExtendedResourceName(path *field.Path, name v1.ResourceName) []error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/DeclarationsInPackageProvider.kt

                        val psiPackage = PsiPackageImpl(PsiManager.getInstance(analysisSession.project), packageFqName.asString())
                        forEachNonKotlinPsiElementFinder(analysisSession.project) { finder ->
                            finder.getClassNames(psiPackage, analysisSession.useSiteAnalysisScope)
                                .mapNotNullTo(this, Name::identifier)
                        }
                    }
                }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. maven-artifact/src/site/apt/index.apt

    ~~ Licensed to the Apache Software Foundation (ASF) under one
    ~~ or more contributor license agreements.  See the NOTICE file
    ~~ distributed with this work for additional information
    ~~ regarding copyright ownership.  The ASF licenses this file
    ~~ to you under the Apache License, Version 2.0 (the
    ~~ "License"); you may not use this file except in compliance
    ~~ with the License.  You may obtain a copy of the License at
    ~~
    ~~ http://www.apache.org/licenses/LICENSE-2.0
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Nov 30 20:57:07 UTC 2014
    - 1.7K bytes
    - Viewed (0)
  10. maven-slf4j-provider/src/site/apt/index.apt

    ~~ Licensed to the Apache Software Foundation (ASF) under one
    ~~ or more contributor license agreements.  See the NOTICE file
    ~~ distributed with this work for additional information
    ~~ regarding copyright ownership.  The ASF licenses this file
    ~~ to you under the Apache License, Version 2.0 (the
    ~~ "License"); you may not use this file except in compliance
    ~~ with the License.  You may obtain a copy of the License at
    ~~
    ~~ http://www.apache.org/licenses/LICENSE-2.0
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 21:09:43 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top