Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for strnames (0.14 sec)

  1. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "PrefetchCache", argLength: 2, hasSideEffects: true},         // Do prefetch arg0 to cache. arg0=addr, arg1=memory.
    	{name: "PrefetchCacheStreamed", argLength: 2, hasSideEffects: true}, // Do non-temporal or streamed prefetch arg0 to cache. arg0=addr, arg1=memory.
    }
    
    //     kind          controls        successors   implicit exit
    //   ----------------------------------------------------------
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	SubjectKindServiceAccount SubjectKind = "ServiceAccount"
    )
    
    // UserSubject holds detailed information for user-kind subject.
    type UserSubject struct {
    	// `name` is the username that matches, or "*" to match all usernames.
    	// Required.
    	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`
    }
    
    // GroupSubject holds detailed information for group-kind subject.
    type GroupSubject struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. pkg/istio-agent/xds_proxy.go

    // subsystems inside the agent to also communicate with either istiod/envoy (eg dns, sds, etc).
    // The goal here is to consolidate all xds related connections to istiod/envoy into a
    // single tcp connection with multiple gRPC streams.
    // TODO: Right now, the workloadSDS server and gatewaySDS servers are still separate
    // connections. These need to be consolidated.
    // TODO: consolidate/use ADSC struct - a lot of duplication.
    type XdsProxy struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  4. cmd/metacache-set.go

    	// if disk did not return any result, but also haven't errored
    	// the entry will be empty and errs will
    	partial func(entries metaCacheEntries, errs []error)
    
    	// finished will be called when all streams have finished and
    	// more than one disk returned an error.
    	// Will not be called if everything operates as expected.
    	finished func(errs []error)
    }
    
    // listPathRaw will list a path on the provided drives.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  5. src/runtime/pprof/pprof.go

    // [Profile.Add] or [Profile.Remove] method call.
    //
    // The CPU profile is not available as a Profile. It has a special API,
    // the [StartCPUProfile] and [StopCPUProfile] functions, because it streams
    // output to a writer during profiling.
    //
    // # Heap profile
    //
    // The heap profile reports statistics as of the most recently completed
    // garbage collection; it elides more recent allocation to avoid skewing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  6. cmd/object-api-utils.go

    	}
    }
    
    // newS2CompressReader will read data from r, compress it and return the compressed data as a Reader.
    // Use Close to ensure resources are released on incomplete streams.
    //
    // input 'on' is always recommended such that this function works
    // properly, because we do not wish to create an object even if
    // client closed the stream prematurely.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  7. src/os/exec/exec.go

    	// are inherited by the child process.
    	childIOFiles []io.Closer
    
    	// parentIOPipes holds closers for the parent's end of any pipes
    	// connected to the child's stdin, stdout, and/or stderr streams
    	// that were opened by the Cmd itself (not supplied by the caller).
    	// These should be closed after Wait sees the command and copying
    	// goroutines exit, or after WaitDelay has expired.
    	parentIOPipes []io.Closer
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
Back to top