Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 144 for Subobject (0.21 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

    				Type:           api.EventTypeWarning,
    				ObjectMeta:     metav1.ObjectMeta{Name: "event2"},
    			},
    			options: printers.GenerateOptions{Wide: true},
    			// Columns: Last Seen, Type, Reason, Object, Subobject, Message, First Seen, Count, Name
    			expected: []metav1.TableRow{{Cells: []interface{}{"2d", "Warning", "Event Reason", "deployment/Deployment Name", "spec.containers{foo}", "kubelet, Node1", "Message Data", "3d", int64(6), "event2"}}},
    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. cmd/object-api-putobject_test.go

    }
    
    // Wrapper for calling PutObject tests for both Erasure multiple disks and single node setup.
    func TestObjectAPIPutObjectSingle(t *testing.T) {
    	ExecExtendedObjectLayerTest(t, testObjectAPIPutObject)
    }
    
    // Tests validate correctness of PutObject.
    func testObjectAPIPutObject(obj ObjectLayer, instanceType string, t TestErrHandler) {
    	// Generating cases for which the PutObject fails.
    	bucket := "minio-bucket"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  9. cmd/erasure-object_test.go

    		t.Fatalf("Failed to putObject %v", err)
    	}
    
    	parts1, errs1 := readAllFileInfo(ctx, erasureDisks, "", bucket, object1, "", false, false)
    	parts1SC := globalStorageClass
    
    	// Object for test case 2 - No StorageClass defined, MetaData in PutObject requesting RRS Class
    	object2 := "object2"
    	metadata2 := make(map[string]string)
    	metadata2["x-amz-storage-class"] = storageclass.RRS
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 30 20:43:25 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  10. docs/iam/opa.md

    ```sh
    cat > example.rego <<EOF
    package httpapi.authz
    
    import input
    
    default allow = false
    
    # Allow the root user to perform any action.
    allow {
     input.owner == true
    }
    
    # All other users may do anything other than call PutObject
    allow {
     input.action != "s3:PutObject"
     input.owner == false
    }
    EOF
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jul 17 15:43:14 UTC 2022
    - 2.3K bytes
    - Viewed (0)
Back to top