Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 161 for shared (0.11 sec)

  1. src/internal/trace/event.go

    	// ArgNames is the names of the event's arguments in order.
    	// This may refer to a globally shared slice. Copy before mutating.
    	ArgNames []string
    
    	// Args contains the event's arguments.
    	Args []uint64
    
    	// Data is additional unparsed data that is associated with the experimental event.
    	// Data is likely to be shared across many ExperimentalEvents, so callers that parse
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  2. src/runtime/type.go

    // there is exactly one *_type per Go type, so that pointer equality
    // can be used to test if types are equal. There is one place that
    // breaks this assumption: buildmode=shared. In this case a type can
    // appear as two different pieces of memory. This is hidden from the
    // runtime and reflect package by the per-module typemap built in
    // typelinksinit. It uses typesEqual to map types from later modules
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. src/encoding/csv/reader.go

    // The partial record contains all fields read before the error.
    // If there is no data left to be read, Read returns nil, [io.EOF].
    // If [Reader.ReuseRecord] is true, the returned slice may be shared
    // between multiple calls to Read.
    func (r *Reader) Read() (record []string, err error) {
    	if r.ReuseRecord {
    		record, err = r.readRecord(r.lastRecord)
    		r.lastRecord = record
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:32:28 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  4. pkg/scheduler/scheduler.go

    			if _, ok := gvkMap[evt.Resource]; ok {
    				gvkMap[evt.Resource] |= evt.ActionType
    			} else {
    				gvkMap[evt.Resource] = evt.ActionType
    			}
    		}
    	}
    	return gvkMap
    }
    
    // newPodInformer creates a shared index informer that returns only non-terminal pods.
    // The PodInformer allows indexers to be added, but note that only non-conflict indexers are allowed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DependencyManagementBuildScopeServices.java

                new NoInputChangesStep<>(
                new CaptureOutputsAfterExecutionStep<>(buildOperationRunner, buildInvocationScopeId.getId(), outputSnapshotter, NO_FILTER,
                // TODO Use a shared execution pipeline
                new BroadcastChangingOutputsStep<>(outputChangeListener,
                new PreCreateOutputParentsStep<>(
                new TimeoutStep<>(timeoutHandler, currentBuildOperationRef,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  6. cmd/storage-datatypes.go

    	return fi
    }
    
    // ReadMultipleReq contains information of multiple files to read from disk.
    type ReadMultipleReq struct {
    	Bucket       string   // Bucket. Can be empty if multiple buckets.
    	Prefix       string   // Shared prefix of all files. Can be empty. Will be joined to filename without modification.
    	Files        []string // Individual files to read.
    	MaxSize      int64    // Return error if size is exceed.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/validator_test.go

    				},
    			},
    			policyDecision: []PolicyDecision{
    				{
    					Action:  ActionDeny,
    					Message: "running out of cost budget",
    				},
    			},
    			costBudget: 1, // shared between expression and messageExpression, needs 1 + 1 = 2 in total
    		},
    		{
    			name:    "no match surpresses failure",
    			matcher: &fakeCELMatcher{matches: false},
    			evaluations: []cel.EvaluationResult{
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  8. src/crypto/tls/quic.go

    	eventArr [8]QUICEvent
    
    	started  bool
    	signalc  chan struct{}   // handshake data is available to be read
    	blockedc chan struct{}   // handshake is waiting for data, closed when done
    	cancelc  <-chan struct{} // handshake has been canceled
    	cancel   context.CancelFunc
    
    	waitingForDrain bool
    
    	// readbuf is shared between HandleData and the handshake goroutine.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    	}
    	return 0, false
    }
    
    // GetBase determines the base address to subtract from virtual
    // address to get symbol table address. For an executable, the base
    // is 0. Otherwise, it's a shared library, and the base is the
    // address where the mapping starts. The kernel needs special handling.
    func GetBase(fh *elf.FileHeader, loadSegment *elf.ProgHeader, stextOffset *uint64, start, limit, offset uint64) (uint64, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/services/NativeServices.java

                        //triggered through tooling API of Gradle <2.3 - native-platform.dll is shared by tooling client (<2.3) and daemon (current) and it is locked by the client (<2.3 issue)
                        LOGGER.debug("Unable to initialize native-platform. Failure: {}", format(ex));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:39 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top