Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 83 for fieldsV1 (0.37 sec)

  1. src/crypto/tls/common.go

    			}
    		}
    	}
    	return errors.New("chain is not signed by an acceptable CA")
    }
    
    // BuildNameToCertificate parses c.Certificates and builds c.NameToCertificate
    // from the CommonName and SubjectAlternateName fields of each of the leaf
    // certificates.
    //
    // Deprecated: NameToCertificate only allows associating a single certificate
    // with a given name. Leave that field nil to let the library select the first
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  2. src/runtime/mprof.go

    // data, either a memRecord or a blockRecord.
    //
    // Per-call-stack profiling information.
    // Lookup by hashing call stack into a linked-list hash table.
    //
    // None of the fields in this bucket header are modified after
    // creation, including its next and allnext links.
    //
    // No heap pointers.
    type bucket struct {
    	_       sys.NotInHeap
    	next    *bucket
    	allnext *bucket
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // be configured with the same defaults as the specified version.
      string compatibilityVersion = 43;
    
      // Specifies experimental helm fields that could be removed or changed in the future
      ExperimentalConfig experimental = 44;
    }
    
    // ZeroVPNConfig enables cross-cluster access using SNI matching.
    message ZeroVPNConfig {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  4. src/time/time.go

    )
    
    // A Time represents an instant in time with nanosecond precision.
    //
    // Programs using times should typically store and pass them as values,
    // not pointers. That is, time variables and struct fields should be of
    // type [time.Time], not *time.Time.
    //
    // A Time value can be used by multiple goroutines simultaneously except
    // that the methods [Time.GobDecode], [Time.UnmarshalBinary], [Time.UnmarshalJSON] and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  5. cmd/iam.go

    // AssumeRoleWithCertificate case, the "virtual" parent user is the value of the
    // `Subject.CommonName` field. For the OIDC (without RoleARN) case the "virtual"
    // parent is derived as a concatenation of the `sub` and `iss` fields. The
    // policies applicable to the STS credential are associated with this "virtual"
    // parent.
    //
    // When a policyName is given to this function, the policy association is
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/debug.go

    			// to be compatible with the one used in expand_calls.go
    			// as opposed to decompose.go. The expand calls code just
    			// takes the base name and creates an offset into it,
    			// without using the SplitOf/SplitOffset fields. The code
    			// in decompose.go does the opposite -- it creates a
    			// LocalSlot object with "Off" set to zero, but with
    			// SplitOf pointing to a parent slot, and SplitOffset
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  7. pkg/kubelet/pod_workers_test.go

    		return pod
    	}
    	intp := func(i int64) *int64 {
    		return &i
    	}
    	expectPodSyncStatus := func(t *testing.T, expected, status *podSyncStatus) {
    		t.Helper()
    		// handle special non-comparable fields
    		if status != nil {
    			if e, a := expected.ctx != nil, status.ctx != nil; e != a {
    				t.Errorf("expected context %t, has context %t", e, a)
    			} else {
    				expected.ctx, status.ctx = nil, nil
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbFile.java

     * for details.
     * </td>
     * </tr>
     * 
     * <tr>
     * <td width="20%">
     * <code>smb://domain;username:password@server/share/path/to/file.txt</code></td>
     * <td>
     * A prototypical example that uses all the fields.
     * </td>
     * </tr>
     *
     * <tr>
     * <td width="20%">
     * <code>smb://server/share/path/to/dir &lt;-- ILLEGAL </code></td>
     * <td>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  9. src/cmd/compile/internal/syntax/parser.go

    // "(" or "[" has already been consumed.
    // If name != nil, it is the first name after "(" or "[".
    // If typ != nil, name must be != nil, and (name, typ) is the first field in the list.
    // In the result list, either all fields have a name, or no field has a name.
    func (p *parser) paramList(name *Name, typ Expr, close token, requireNames bool) (list []*Field) {
    	if trace {
    		defer p.trace("paramList")()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  10. src/runtime/mbitmap.go

    			badPointer(s, p, refBase, refOff)
    		}
    		return
    	}
    	// If p is a bad pointer, it may not be in s's bounds.
    	//
    	// Check s.state to synchronize with span initialization
    	// before checking other fields. See also spanOfHeap.
    	if state := s.state.get(); state != mSpanInUse || p < s.base() || p >= s.limit {
    		// Pointers into stacks are also ok, the runtime manages these explicitly.
    		if state == mSpanManual {
    			return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
Back to top