Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 52 for usedBy (0.48 sec)

  1. src/cmd/internal/obj/x86/asm6.go

    	maxLoopPad = 0
    )
    
    // Bit flags that are used to express jump target properties.
    const (
    	// branchBackwards marks targets that are located behind.
    	// Used to express jumps to loop headers.
    	branchBackwards = (1 << iota)
    	// branchShort marks branches those target is close,
    	// with offset is in -128..127 range.
    	branchShort
    	// branchLoopHead marks loop entry.
    	// Used to insert padding for misaligned loops.
    	branchLoopHead
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. src/database/sql/sql_test.go

    }
    
    func (c *ctxOnlyConn) Close() error {
    	return c.fc.Close()
    }
    
    // Prepare is still part of the Conn interface, so while it isn't used
    // must be defined for compatibility.
    func (c *ctxOnlyConn) Prepare(q string) (driver.Stmt, error) {
    	panic("not used")
    }
    
    func (c *ctxOnlyConn) PrepareContext(ctx context.Context, q string) (driver.Stmt, error) {
    	return c.fc.PrepareContext(ctx, q)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

          variable_nodes[shared_name] = var_node
    
      return variable_nodes
    
    
    class MultipleSignatureModel(module.Module):
      """A model with 2 signatures.
    
      Used to test where the quantizer has to handle multiple signatures.
      """
    
      def __init__(self):
        self.matmul_filters = random_ops.random_uniform(
            shape=(4, 3), minval=-1.0, maxval=1.0
        )
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  4. src/net/http/transport_test.go

    			// defer afterTest at top runs), but not before the
    			// len(addrSeen) check at the bottom of this test,
    			// since Closing this early in the loop would risk
    			// making connections be re-used for the wrong reason.
    			defer res.Body.Close()
    
    			if res.ContentLength != int64(wantLen) {
    				t.Errorf("%s res.ContentLength = %d; want %d", path, res.ContentLength, wantLen)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  5. pkg/kubelet/eviction/eviction_manager_test.go

    	return nil
    }
    
    // mockDiskInfoProvider is used to simulate testing.
    type mockDiskInfoProvider struct {
    	dedicatedImageFs *bool
    }
    
    // HasDedicatedImageFs returns the mocked value
    func (m *mockDiskInfoProvider) HasDedicatedImageFs(_ context.Context) (bool, error) {
    	return ptr.Deref(m.dedicatedImageFs, false), nil
    }
    
    // mockDiskGC is used to simulate invoking image and container garbage collection.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. cmd/server_test.go

    	// write into buffer till length of the buffer is greater than the generated random number.
    	for i := 0; i <= randInt; i += 10 {
    		buffer.WriteString(data)
    	}
    	// String content which is used for put object range test.
    	putBytes := buffer.Bytes()
    	putBytes = putBytes[:randInt]
    	// randomize the order of bytes in the byte array and create a reader.
    	putBytes = randomizeBytes(putBytes, -1)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm64/asm7.go

    	SPOP_CGDVADP: {3, 7, 13, 5, true},
    	SPOP_CIGVAC:  {3, 7, 14, 3, true},
    	SPOP_CIGDVAC: {3, 7, 14, 5, true},
    	SPOP_CVAP:    {3, 7, 12, 1, true},
    	SPOP_CVADP:   {3, 7, 13, 1, true},
    }
    
    // Used for padding NOOP instruction
    const OP_NOOP = 0xd503201f
    
    // pcAlignPadLength returns the number of bytes required to align pc to alignedValue,
    // reporting an error if alignedValue is not a power of two or is out of range.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Maps.java

          return expectedSize + 1;
        }
        if (expectedSize < Ints.MAX_POWER_OF_TWO) {
          // This seems to be consistent across JDKs. The capacity argument to HashMap and LinkedHashMap
          // ends up being used to compute a "threshold" size, beyond which the internal table
          // will be resized. That threshold is ceilingPowerOfTwo(capacity*loadFactor), where
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_test.go

    			podSelector: map[string]string{v1.LabelOSStable: goruntime.GOOS},
    			podStatus:   v1.PodPending,
    		},
    		{
    			// Expect no patching to happen, label B should be preserved and can be used for nodeAffinity.
    			name:        "new node label, correct pod selector, admitted",
    			nodeLabels:  map[string]string{v1.LabelOSStable: goruntime.GOOS, v1.LabelArchStable: goruntime.GOARCH, "key": "B"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  10. cmd/site-replication.go

    		replLogIf(ctx, err)
    	}
    
    	c.Lock()
    	defer c.Unlock()
    	c.state = srState{}
    	c.enabled = false
    	return nil
    }
    
    const (
    	// Access key of service account used for perform cluster-replication
    	// operations.
    	siteReplicatorSvcAcc = "site-replicator-0"
    )
    
    // PeerSiteInfo is a wrapper struct around madmin.PeerSite with extra info on site status
    type PeerSiteInfo struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
Back to top