Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 136 for ridentifier (0.24 sec)

  1. src/go/printer/testdata/parser.go

    	}
    }
    
    // The unresolved object is a sentinel to mark identifiers that have been added
    // to the list of unresolved identifiers. The sentinel is only used for verifying
    // internal consistency.
    var unresolved = new(ast.Object)
    
    func (p *parser) resolve(x ast.Expr) {
    	// nothing to do if x is not an identifier or the blank identifier
    	ident, _ := x.(*ast.Ident)
    	if ident == nil {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  2. src/crypto/x509/x509.go

    //
    //	anyExtendedKeyUsage OBJECT IDENTIFIER ::= { id-ce-extKeyUsage 0 }
    //
    //	id-kp OBJECT IDENTIFIER ::= { id-pkix 3 }
    //
    //	id-kp-serverAuth             OBJECT IDENTIFIER ::= { id-kp 1 }
    //	id-kp-clientAuth             OBJECT IDENTIFIER ::= { id-kp 2 }
    //	id-kp-codeSigning            OBJECT IDENTIFIER ::= { id-kp 3 }
    //	id-kp-emailProtection        OBJECT IDENTIFIER ::= { id-kp 4 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  3. src/net/url/url_test.go

    	},
    	// host subcomponent; IPv6 address with zone identifier in RFC 6874
    	{
    		"http://[fe80::1%25en0]/", // alphanum zone identifier
    		&URL{
    			Scheme: "http",
    			Host:   "[fe80::1%en0]",
    			Path:   "/",
    		},
    		"",
    	},
    	// host and port subcomponents; IPv6 address with zone identifier in RFC 6874
    	{
    		"http://[fe80::1%25en0]:8080/", // alphanum zone identifier
    		&URL{
    			Scheme: "http",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

    // the float function, this map (map2) is in {attr_identifier: attr_name_2}
    // format. Where, the attribute identifiers should match between two maps,
    // attr_name_1 is the name of the of the attribute needs to be set in the
    // quantized function, attr_name_2 is the name of the attribute corresponding to
    // the attribute identifier in the float function.
    LogicalResult TransferTFAttributesToTFUniformAttributes(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

        vocabs = ragged_string_ops.string_split_v2(
            string_ops.string_strip(raw_vocab), sep=','
        )
    
        # Initialize the vocab table. Each comma-separated word in vocab_file.txt
        # corresponds to the numeric identifiers in `values`.
        kv_init = lookup_ops.KeyValueTensorInitializer(
            keys=vocabs, values=np.array([0, 1, 2]), value_dtype=dtypes.int64
        )
        table = lookup_ops.StaticVocabularyTable(kv_init, num_oov_buckets=5)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    //sys	isValidSid(sid *SID) (isValid bool) = advapi32.IsValidSid
    
    // The security identifier (SID) structure is a variable-length
    // structure used to uniquely identify users or groups.
    type SID struct{}
    
    // StringToSid converts a string-format security identifier
    // SID into a valid, functional SID.
    func StringToSid(s string) (*SID, error) {
    	var sid *SID
    	p, e := UTF16PtrFromString(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            }
        }
    
        /**
         * Gets the identifiers of all profiles that contributed to this project's effective model. This includes active
         * profiles from the project's POM and all its parent POMs as well as from external sources like the
         * {@code settings.xml}. The profile identifiers are grouped by the identifier of their source, e.g.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	//                   resource.
    	//   "id"   string - the identifier of the missing resource
    	// Status code 404
    	StatusReasonNotFound StatusReason = "NotFound"
    
    	// StatusReasonAlreadyExists means the resource you are creating already exists.
    	// Details (optional):
    	//   "kind" string - the kind attribute of the conflicting resource
    	//   "id"   string - the identifier of the conflicting resource
    	// Status code 409
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  9. src/cmd/compile/internal/syntax/parser.go

    		n := NewName(p.pos(), p.lit)
    		p.next()
    		return n
    	}
    
    	n := NewName(p.pos(), "_")
    	p.syntaxError("expected name")
    	p.advance()
    	return n
    }
    
    // IdentifierList = identifier { "," identifier } .
    // The first name must be provided.
    func (p *parser) nameList(first *Name) []*Name {
    	if trace {
    		defer p.trace("nameList")()
    	}
    
    	if debug && first == nil {
    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. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // +kubebuilder:validation:Required
      // +kubebuilder:validation:Type=string
      // +kubebuilder:validation:Format=date-time
      optional Time lastTransitionTime = 4;
    
      // reason contains a programmatic identifier indicating the reason for the condition's last transition.
      // Producers of specific condition types may define expected values and meanings for this field,
      // and whether the values are considered a guaranteed API.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top