Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 266 for respective (0.25 sec)

  1. src/cmd/go/internal/modfetch/repo.go

    // own module, so that there would be two modules rsc.io/qr and rsc.io/qr/gf256.
    // Then we can simultaneously issue rsc.io/qr v0.3.0 (dropping the gf256 subdirectory)
    // and rsc.io/qr/gf256 v0.1.0, including in their respective go.mod
    // cyclic requirements pointing at each other: rsc.io/qr v0.3.0 requires
    // rsc.io/qr/gf256 v0.1.0 and vice versa. Then a build can be
    // using an older rsc.io/qr module that includes the gf256 package, but if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 16:36:19 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/internal/language/parse.go

    // different values in the -u section.
    var ErrDuplicateKey = errors.New("language: different values for same key in -u extension")
    
    // ValueError is returned by any of the parsing functions when the
    // input is well-formed but the respective subtag is not recognized
    // as a valid value.
    type ValueError struct {
    	v [8]byte
    }
    
    // NewValueError creates a new ValueError.
    func NewValueError(tag []byte) ValueError {
    	var e ValueError
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. src/go/types/typexpr.go

    		check.objDecl(obj, def)
    		typ = obj.Type() // type must have been assigned by Checker.objDecl
    	}
    	assert(typ != nil)
    
    	// The object may have been dot-imported.
    	// If so, mark the respective package as used.
    	// (This code is only needed for dot-imports. Without them,
    	// we only have to mark variables, see *Var case below).
    	if pkgName := check.dotImportMap[dotImportKey{scope, obj.Name()}]; pkgName != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  4. pkg/kubelet/pleg/generic.go

    	// if we have multiple entities, such as Evented PLEG, while trying to set the PodStatus in the
    	// cache we may run into the racy timestamps given each of them were to calculate the timestamps
    	// in their respective execution flow. While Generic PLEG calculates this timestamp and gets
    	// the PodStatus, we can only calculate the corresponding timestamp in
    	// Evented PLEG after the event has been received by the Kubelet.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/values.yaml

        # Use the user-specified, secret volume mounted key and certs for Pilot and workloads.
        mountMtlsCerts: false
    
        multiCluster:
          # Set to true to connect two kubernetes clusters via their respective
          # ingressgateway services when pods in each cluster cannot directly
          # talk to one another. All clusters should be using Istio mTLS and must
          # have a shared root CA for this model to work.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. src/syscall/js/js.go

    	} else {
    		// allocates on the heap, but exceeding maxStackArgs should be rare
    		argVals = make([]Value, size)
    		argRefs = make([]ref, size)
    	}
    	return
    }
    
    // storeArgs maps input args onto respective Value and ref slices.
    // It can be paired with makeArgSlices to make-and-store JavaScript arg slices.
    func storeArgs(args []any, argValsDst []Value, argRefsDst []ref) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 14:35:26 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  7. pkg/controller/volume/attachdetach/attach_detach_controller_test.go

    	// Create the controller
    	logger, tCtx := ktesting.NewTestContext(t)
    	adc := createADC(t, tCtx, fakeKubeClient, informerFactory, plugins)
    
    	// Add existing objects (created by testplugin) to the respective informers
    	pods, err := fakeKubeClient.CoreV1().Pods(v1.NamespaceAll).List(tCtx, metav1.ListOptions{})
    	if err != nil {
    		t.Fatalf("Run failed with error. Expected: <no error> Actual: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/typexpr.go

    		check.objDecl(obj, def)
    		typ = obj.Type() // type must have been assigned by Checker.objDecl
    	}
    	assert(typ != nil)
    
    	// The object may have been dot-imported.
    	// If so, mark the respective package as used.
    	// (This code is only needed for dot-imports. Without them,
    	// we only have to mark variables, see *Var case below).
    	if pkgName := check.dotImportMap[dotImportKey{scope, obj.Name()}]; pkgName != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/envelope.go

    	cache       *simpleCache
    	apiServerID string
    }
    
    // NewEnvelopeTransformer returns a transformer which implements a KEK-DEK based envelope encryption scheme.
    // It uses envelopeService to encrypt and decrypt DEKs. Respective DEKs (in encrypted form) are prepended to
    // the data items they encrypt.
    func NewEnvelopeTransformer(envelopeService kmsservice.Service, providerName string, stateFunc StateFunc, apiServerID string) value.Transformer {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 00:23:50 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/gen_test.go

    // someMatchesAllResourceRequests and
    // someMatchesAllNonResourceRequests parameters indicate whether any
    // rule in the collection matches all of the relevant sort of request;
    // these imply the respective returned slice of counterexamples will
    // be empty.  The matchAllResourceRequests and
    // matchAllNonResourceRequests parameters indicate whether the
    // generated rule should match all of the relevant sort.  The
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
Back to top