Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,490 for subobject (0.2 sec)

  1. test/tinyfin.go

    	for {
    		select {
    		case <-timeout:
    			println("timeout,", count, "finalized so far")
    			panic("not all finalizers are called")
    		case x := <-finalized:
    			// Check that p points to the correct subobject of the tiny allocation.
    			// It's a bit tricky, because we can't capture another variable
    			// with the expected value (it would be combined as well).
    			if x < 0 || x >= N {
    				println("got", x)
    				panic("corrupted")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 03 18:57:18 UTC 2015
    - 1.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model_ops.td

        a Python `tf.Module` with an exported function "foo" will result in an MLIR
        module where the function has an exported name "foo". If the `tf.Module`
        contains a subobject "self.bar" which itself has an exported function
        "baz", then the function will have an exported name "bar.baz".
        If an object in the object graph is reachable via multiple paths
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  3. src/runtime/race.go

    	kind := t.Kind_ & abi.KindMask
    	if kind == abi.Array || kind == abi.Struct {
    		// for composite objects we have to read every address
    		// because a write might happen to any subobject.
    		racereadrangepc(addr, t.Size_, callerpc, pc)
    	} else {
    		// for non-composite objects we can read just the start
    		// address, as any write must write the first byte.
    		racereadpc(addr, callerpc, pc)
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    }
    
    func (so *Subobject) print(ps *printState) {
    	ps.print(so.SubExpr)
    	ps.writeString(".<")
    	ps.print(so.Type)
    	ps.writeString(fmt.Sprintf(" at offset %d>", so.Offset))
    }
    
    func (so *Subobject) Traverse(fn func(AST) bool) {
    	if fn(so) {
    		so.Type.Traverse(fn)
    		so.SubExpr.Traverse(fn)
    	}
    }
    
    func (so *Subobject) Copy(fn func(AST) AST, skip func(AST) bool) AST {
    	if skip(so) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    			st.fail(fmt.Sprintf("unsupported number of operator arguments: %d", args))
    			panic("not reached")
    		}
    	}
    }
    
    // subobject parses:
    //
    //	<expression> ::= so <referent type> <expr> [<offset number>] <union-selector>* [p] E
    //	<union-selector> ::= _ [<number>]
    func (st *state) subobject() AST {
    	typ := st.demangleType(false)
    	expr := st.expression()
    	offset := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers_test.go

    		},
    		// Generate options=Wide; print subject and roles.
    		{
    			binding: rbac.RoleBinding{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "binding2",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    				},
    				Subjects: []rbac.Subject{
    					{
    						Kind: "User",
    						Name: "user-name",
    					},
    					{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers.go

    		{Name: "Reason", Type: "string", Description: apiv1.Event{}.SwaggerDoc()["reason"]},
    		{Name: "Object", Type: "string", Description: apiv1.Event{}.SwaggerDoc()["involvedObject"]},
    		{Name: "Subobject", Type: "string", Priority: 1, Description: apiv1.Event{}.InvolvedObject.SwaggerDoc()["fieldPath"]},
    		{Name: "Source", Type: "string", Priority: 1, Description: apiv1.Event{}.SwaggerDoc()["source"]},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  8. platforms/software/resources-s3/src/main/java/org/gradle/internal/resource/transport/aws/s3/S3Client.java

            }
        }
    
        public S3Object getMetaData(URI uri) {
            LOGGER.debug("Attempting to get s3 meta-data: [{}]", uri.toString());
            //Would typically use GetObjectMetadataRequest but it does not work with v4 signatures
            return doGetS3Object(uri, true);
        }
    
        public S3Object getResource(URI uri) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  9. cmd/erasure-object.go

    	if err != nil {
    		return oi, toObjectErr(err, srcBucket, srcObject)
    	}
    	if fi.Deleted {
    		if srcOpts.VersionID == "" {
    			return oi, toObjectErr(errFileNotFound, srcBucket, srcObject)
    		}
    		return fi.ToObjectInfo(srcBucket, srcObject, srcOpts.Versioned || srcOpts.VersionSuspended), toObjectErr(errMethodNotAllowed, srcBucket, srcObject)
    	}
    
    	filterOnlineDisksInplace(fi, metaArr, onlineDisks)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  10. internal/s3select/sql/parser_test.go

    		participle.CaseInsensitive("Timeword"),
    	)
    
    	j := JSONPath{}
    	cases := []string{
    		"S3Object",
    		"S3Object.id",
    		"S3Object.book.title",
    		"S3Object.id[1]",
    		"S3Object.id['abc']",
    		"S3Object.id['ab']",
    		"S3Object.words.*.id",
    		"S3Object.words.name[*].val",
    		"S3Object.words.name[*].val[*]",
    		"S3Object.words.name[*].val.*",
    	}
    	for i, tc := range cases {
    		err := p.ParseString(tc, &j)
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top