Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 3,003 for sameId (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    	// if Listener is set, use it and omit BindAddress/BindPort/BindNetwork.
    	Listener net.Listener
    
    	// ServerCert is the TLS cert info for serving secure traffic
    	ServerCert GeneratableKeyCert
    	// SNICertKeys are named CertKeys for serving secure traffic with SNI support.
    	SNICertKeys []cliflag.NamedCertKey
    	// CipherSuites is the list of allowed cipher suites for the server.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (1)
  2. src/time/tick.go

    package time
    
    import "unsafe"
    
    // Note: The runtime knows the layout of struct Ticker, since newTimer allocates it.
    // Note also that Ticker and Timer have the same layout, so that newTimer can handle both.
    // The initTimer and initTicker fields are named differently so that
    // users cannot convert between the two without unsafe.
    
    // A Ticker holds a channel that delivers “ticks” of a clock
    // at intervals.
    type Ticker struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_maven.adoc

    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/path/DefaultPathTranslator.java

     * under the License.
     */
    package org.apache.maven.model.path;
    
    import javax.inject.Named;
    import javax.inject.Singleton;
    
    import java.io.File;
    import java.nio.file.Path;
    
    /**
     * Resolves relative paths against a specific base directory.
     *
     */
    @Named
    @Singleton
    public class DefaultPathTranslator implements PathTranslator {
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    			targetPort := port.TargetPort
    			// Named targetPort has different semantics from Service vs ServiceEntry
    			if svc.Source == kind.Service {
    				// Service has explicit named targetPorts.
    				if named, f := svc.PortNames[int32(port.ServicePort)]; f && named.TargetPortName != "" {
    					// This port is a named target port, look it up
    					tv, ok := p.Ports[named.TargetPortName]
    					if !ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  6. src/go/types/alias.go

    	// of Invalid to mark unfinished aliases.
    	if t != Typ[Invalid] {
    		a0.actual = t
    	}
    
    	return t
    }
    
    // asNamed returns t as *Named if that is t's
    // actual type. It returns nil otherwise.
    func asNamed(t Type) *Named {
    	n, _ := Unalias(t).(*Named)
    	return n
    }
    
    // newAlias creates a new Alias type with the given type name and rhs.
    // rhs must not be nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/resource/v1alpha2/generated.proto

      // +optional
      optional bool shareable = 3;
    }
    
    // AllocationResultModel must have one and only one field set.
    message AllocationResultModel {
      // NamedResources describes the allocation result when using the named resources model.
      //
      // +optional
      optional NamedResourcesAllocationResult namedResources = 1;
    }
    
    // DriverAllocationResult contains vendor parameters and the allocation result for
    // one request.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 22:07:50 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  8. src/syscall/dll_windows.go

    // A DLL implements access to a single DLL.
    type DLL struct {
    	Name   string
    	Handle Handle
    }
    
    // LoadDLL loads the named DLL file into memory.
    //
    // If name is not an absolute path and is not a known system DLL used by
    // Go, Windows will search for the named DLL in many locations, causing
    // potential DLL preloading attacks.
    //
    // Use [LazyDLL] in golang.org/x/sys/windows for a secure way to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultLocalRepositoryManager.java

    import org.apache.maven.api.LocalRepository;
    import org.apache.maven.api.RemoteRepository;
    import org.apache.maven.api.Session;
    import org.apache.maven.api.di.Named;
    import org.apache.maven.api.di.Singleton;
    import org.apache.maven.api.services.LocalRepositoryManager;
    
    @Named
    @Singleton
    public class DefaultLocalRepositoryManager implements LocalRepositoryManager {
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/load/pkg.go

    		p.Internal.Gccgoflags = BuildGccgoflags.For(p)
    	}
    }
    
    // GoFilesPackage creates a package for building a collection of Go files
    // (typically named on the command line). The target is named p.a for
    // package p or named after the first Go file for package main.
    func GoFilesPackage(ctx context.Context, opts PackageOpts, gofiles []string) *Package {
    	modload.Init()
    
    	for _, f := range gofiles {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top