Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 62 for sounds (0.12 sec)

  1. src/testing/testing.go

    	var pc [1]uintptr
    	n := runtime.Callers(2, pc[:]) // skip runtime.Callers + Helper
    	if n == 0 {
    		panic("testing: zero callers found")
    	}
    	if _, found := c.helperPCs[pc[0]]; !found {
    		c.helperPCs[pc[0]] = struct{}{}
    		c.helperNames = nil // map will be recreated next time it is needed
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/filesystem_interface.h

    /// methods, the last argument is always a `TF_Status *` (or an array of such
    /// pointers) owned by core TensorFlow and guaranteed to not be `nullptr`.
    ///
    /// To ensure ABI and API compatibility, we have out-of-bounds data that is used
    /// by both core TensorFlow and the plugin at load time. We don't include this
    /// data in the structures here to prevent cases when padding/packing enabled by
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	if err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    	if len(items) != 0 {
    		t.Errorf("unexpected items: %#v", items)
    	}
    }
    
    // testListTableConversion verifies a set of known bounds and expected limitations for the values
    // returned from a TableList. These conditions may be changed if necessary with adequate review.
    func (t *Tester) testListTableConversion(obj runtime.Object, assignFn AssignFunc) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    // apiextensions-apiserver has discovery disabled, so hardcode this mapping
    var fakeRESTMapper map[schema.GroupVersionResource]string = map[schema.GroupVersionResource]string{
    	myCRDV1Beta1: "MyCoolCRD",
    }
    
    // FixTabsOrDie counts the number of tab characters preceding the first
    // line in the given yaml object. It removes that many tabs from every
    // line. It panics (it's a test function) if some line has fewer tabs
    // than the first line.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    	if goodSliceOfRequests(qsd.QueuelessExecutingRequests) {
    		t.Logf("Found user %s among queueless requests", username)
    		return
    	}
    	goodQueueDump := func(qd debug.QueueDump) bool {
    		return goodSliceOfRequests(qd.Requests) || goodSliceOfRequests(qd.RequestsExecuting)
    	}
    	if SliceMapReduce(goodQueueDump, or)(qsd.Queues) {
    		t.Logf("Found user %s among queued requests", username)
    		return
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/horizontal.go

    	}
    
    	return true
    }
    
    // computeReplicasForMetrics computes the desired number of replicas for the metric specifications listed in the HPA,
    // returning the maximum of the computed replica counts, a description of the associated metric, and the statuses of
    // all metrics computed.
    // It may return both valid metricDesiredReplicas and an error,
    // when some metrics still work and HPA should perform scaling based on them.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		// Round to integer, float64 only.
    		//
    		// aux | rounding mode
    		// ----+-----------------------------------
    		//   1 | round to nearest, ties away from 0
    		//   4 | round to nearest, ties to even
    		//   5 | round toward 0
    		//   6 | round toward +∞
    		//   7 | round toward -∞
    		{name: "FIDBR", argLength: 1, reg: fp11, asm: "FIDBR", aux: "Int8"},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  8. src/runtime/malloc.go

    }
    
    func (l *linearAlloc) init(base, size uintptr, mapMemory bool) {
    	if base+size < base {
    		// Chop off the last byte. The runtime isn't prepared
    		// to deal with situations where the bounds could overflow.
    		// Leave that memory reserved, though, so we don't map it
    		// later.
    		size -= 1
    	}
    	l.next, l.mapped = base, base
    	l.end = base + size
    	l.mapMemory = mapMemory
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. src/crypto/x509/x509.go

    	PublicKey          any
    
    	Version             int
    	SerialNumber        *big.Int
    	Issuer              pkix.Name
    	Subject             pkix.Name
    	NotBefore, NotAfter time.Time // Validity bounds.
    	KeyUsage            KeyUsage
    
    	// Extensions contains raw X.509 extensions. When parsing certificates,
    	// this can be used to extract non-critical extensions that are not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  10. src/bufio/bufio_test.go

    	}
    	b1.Flush()
    	if w1 != 3 {
    		t.Fatalf("flush 1200 + 1389 'x's: got %d writes, want 3", w1)
    	}
    }
    
    // A writeCountingDiscard is like io.Discard and counts the number of times
    // Write is called on it.
    type writeCountingDiscard int
    
    func (w *writeCountingDiscard) Write(p []byte) (int, error) {
    	*w++
    	return len(p), nil
    }
    
    type negativeReader int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
Back to top