Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for multis (0.1 sec)

  1. src/crypto/x509/x509_test.go

    		t.Errorf("the backing array of an empty ExtraNames got modified by String")
    	}
    }
    
    func TestRDNSequenceString(t *testing.T) {
    	// Test some extra cases that get lost in pkix.Name conversions such as
    	// multi-valued attributes.
    
    	var (
    		oidCountry            = []int{2, 5, 4, 6}
    		oidOrganization       = []int{2, 5, 4, 10}
    		oidOrganizationalUnit = []int{2, 5, 4, 11}
    		oidCommonName         = []int{2, 5, 4, 3}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/asm7.go

    		p.To.Type == obj.TYPE_REGREG && p.To.Offset == REGTMP
    }
    
    // isRestartable returns whether p is a multi-instruction sequence that,
    // if preempted, can be restarted.
    func (c *ctxt7) isRestartable(p *obj.Prog) bool {
    	if c.isUnsafePoint(p) {
    		return false
    	}
    	// If p is a multi-instruction sequence with uses REGTMP inserted by
    	// the assembler in order to materialize a large constant/offset, we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/data.go

    	// want the normal symbol with the same address and finds
    	// it in the other module.)
    	//
    	// To work around this we lay out the symbls whose
    	// addresses are vital for multi-module programs to work
    	// as normal symbols, and give them a little size.
    	//
    	// On AIX, as all DATA sections are merged together, ld might not put
    	// these symbols at the beginning of their respective section if there
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods_test.go

    		command:     []string{"ls"},
    		expectError: true,
    	}, {
    		description: "null exec command",
    		podFullName: podFullName,
    		container:   containerID,
    		expectError: false,
    	}, {
    		description: "multi exec commands",
    		podFullName: podFullName,
    		container:   containerID,
    		command:     []string{"bash", "-c", "ls"},
    		expectError: false,
    	}}
    
    	for _, tc := range testcases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  5. cmd/site-replication.go

    }
    
    // SiteReplicationSys - manages cluster-level replication.
    type SiteReplicationSys struct {
    	sync.RWMutex
    
    	enabled bool
    
    	// In-memory and persisted multi-site replication state.
    	state srState
    
    	iamMetaCache srIAMCache
    }
    
    type srState srStateV1
    
    // srStateV1 represents version 1 of the site replication state persistence
    // format.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/ops.mlir

      %0 = "tfl.select"(%cond, %arg0, %arg1): (tensor<?xi1>,tensor<?xi32>,tensor<?xi32>) -> tensor<?xi32>
      func.return %0 : tensor<?xi32>
    }
    
    // -----
    
    // test select with multi-dim inputs
    // CHECK-LABEL: testSelectMultiDim
    func.func @testSelectMultiDim(%cond : tensor<?xi1>, %arg0 : tensor<?x4xi32>, %arg1 : tensor<?x4xi32>) -> tensor<?x4xi32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
Back to top