Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 679 for Id (0.03 sec)

  1. src/crypto/tls/boring_test.go

    			t.Errorf("client offered disallowed version %#x", v)
    		}
    	}
    	for _, id := range hello.cipherSuites {
    		if !isBoringCipherSuite(id) {
    			t.Errorf("client offered disallowed suite %#x", id)
    		}
    	}
    	for _, id := range hello.supportedCurves {
    		if !isBoringCurve(id) {
    			t.Errorf("client offered disallowed curve %d", id)
    		}
    	}
    	for _, sigHash := range hello.supportedSignatureAlgorithms {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. src/runtime/covermeta.go

    func addCovMeta(p unsafe.Pointer, dlen uint32, hash [16]byte, pkgpath string, pkgid int, cmode uint8, cgran uint8) uint32 {
    	id := rtcov.AddMeta(p, dlen, hash, pkgpath, pkgid, cmode, cgran)
    	if id == 0 {
    		throw("runtime.addCovMeta: coverage package map collision")
    	}
    	return id
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 603 bytes
    - Viewed (0)
  3. src/internal/trace/internal/testgen/go122/trace.go

    // strings to traces.
    func (g *Generation) String(s string) uint64 {
    	if len(s) == 0 {
    		return 0
    	}
    	if id, ok := g.strings[s]; ok {
    		return id
    	}
    	id := uint64(len(g.strings) + 1)
    	g.strings[s] = id
    	return id
    }
    
    // Stack registers a stack with the trace.
    //
    // This is a convenience function for easily adding correct
    // stacks to traces.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. src/runtime/traceexp.go

    	traceEvSpan      // heap span exists [timestamp, id, npages, type/class]
    	traceEvSpanAlloc // heap span alloc [timestamp, id, npages, type/class]
    	traceEvSpanFree  // heap span free [timestamp, id]
    
    	// Experimental heap object events. IDs map reversibly to addresses.
    	traceEvHeapObject      // heap object exists [timestamp, id, type]
    	traceEvHeapObjectAlloc // heap object alloc [timestamp, id, type]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. cmd/metacache-marker.go

    			continue
    		}
    		switch kv[0] {
    		case "minio_cache":
    			if kv[1] != markerTagVersion {
    				continue
    			}
    		case "id":
    			o.ID = kv[1]
    		case "return":
    			o.ID = mustGetUUID()
    			o.Create = true
    		case "p": // pool
    			v, err := strconv.ParseInt(kv[1], 10, 64)
    			if err != nil {
    				o.ID = mustGetUUID()
    				o.Create = true
    				continue
    			}
    			o.pool = int(v)
    		case "s": // set
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. security/pkg/server/ca/authenticate/kubeauth/kube_jwt_test.go

    				if err == nil {
    					t.Errorf("Case %s: Succeeded. Error expected: %v", id, err)
    				} else if err.Error() != tc.expectedErrMsg {
    					t.Errorf("Case %s: Incorrect error message: \n%s\nVS\n%s",
    						id, err.Error(), tc.expectedErrMsg)
    				}
    				return
    			} else if err != nil {
    				t.Errorf("Case %s: Unexpected Error: %v", id, err)
    				return
    			}
    
    			expectedCaller := &security.Caller{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. pilot/pkg/xds/xdsgen.go

    type IstioControlPlaneInstance struct {
    	// The Istio component type (e.g. "istiod")
    	Component string
    	// The ID of the component instance
    	ID string
    	// The Istio version
    	Info istioversion.BuildInfo
    }
    
    // Evaluate the controlPlane lazily in order to allow "POD_NAME" env var setting after running the process.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. internal/event/target/postgresql.go

    		queueDir := filepath.Join(args.QueueDir, storePrefix+"-postgresql-"+id)
    		queueStore = store.NewQueueStore[event.Event](queueDir, args.QueueLimit, event.StoreExtension)
    		if err := queueStore.Open(); err != nil {
    			return nil, fmt.Errorf("unable to initialize the queue store of PostgreSQL `%s`: %w", id, err)
    		}
    	}
    
    	target := &PostgreSQLTarget{
    		id:         event.TargetID{ID: id, Name: "postgresql"},
    		args:       args,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. internal/crypto/sse-s3.go

    	}
    
    	// There are two possibilities:
    	// - We use a KMS -> There must be non-empty key ID and a KMS data key.
    	// - We use a K/V -> There must be no key ID and no KMS data key.
    	// Otherwise, the caller has passed an invalid argument combination.
    	if keyID == "" && len(kmsKey) != 0 {
    		logger.CriticalIf(context.Background(), errors.New("The key ID must not be empty if a KMS data key is present"))
    	}
    	if keyID != "" && len(kmsKey) == 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. src/go/types/objset.go

    // the same name, insert leaves s unchanged and returns alt.
    // Otherwise it inserts obj and returns nil.
    func (s *objset) insert(obj Object) Object {
    	id := obj.Id()
    	if alt := (*s)[id]; alt != nil {
    		return alt
    	}
    	if *s == nil {
    		*s = make(map[string]Object)
    	}
    	(*s)[id] = obj
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top