Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for nextch (0.15 sec)

  1. src/regexp/syntax/parse.go

    			nextLo = c + 1
    		}
    	}
    	for _, xr := range x.R32 {
    		lo, hi, stride := rune(xr.Lo), rune(xr.Hi), rune(xr.Stride)
    		if stride == 1 {
    			if nextLo <= lo-1 {
    				r = appendRange(r, nextLo, lo-1)
    			}
    			nextLo = hi + 1
    			continue
    		}
    		for c := lo; c <= hi; c += stride {
    			if nextLo <= c-1 {
    				r = appendRange(r, nextLo, c-1)
    			}
    			nextLo = c + 1
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/convert_control_to_data_outputs.mlir

        // Checks fetch op is not modified.
        // CHECK: tf_executor.fetch
        // CHECK-SAME: tensor<!tf_type.resource<tensor<f32>>>, tensor<!tf_type.resource<tensor<f32>>>, tensor<f32>, tensor<f32>, !tf_executor.control
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 18:35:00 UTC 2024
    - 68.9K bytes
    - Viewed (0)
  3. tensorflow/c/c_api_test.cc

      EXPECT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
      // Fetch and see that the new value is returned.
      TF_GraphGetTensorShape(graph, feed_out_0, returned_dims, num_dims, s);
      ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
      EXPECT_EQ(2, num_dims);
      EXPECT_EQ(2, returned_dims[0]);
      EXPECT_EQ(3, returned_dims[1]);
    
      // Try to fetch a shape with the wrong num_dims
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    		j = len(name)
    	}
    	hash := notsha256.Sum256([]byte(name[i+1 : j]))
    	return name[:i+1] + base64.StdEncoding.EncodeToString(hash[:6]) + name[j:]
    }
    
    /*
     * look for the next file in an archive.
     * adapted from libmach.
     */
    func nextar(bp *bio.Reader, off int64, a *ArHdr) int64 {
    	if off&1 != 0 {
    		off++
    	}
    	bp.MustSeek(off, 0)
    	var buf [SAR_HDR]byte
    	if n, err := io.ReadFull(bp, buf[:]); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. cmd/admin-handlers-users.go

    		AccountName: accountName,
    		Server:      objectAPI.BackendInfo(),
    		Policy:      buf,
    	}
    
    	for _, bucket := range buckets {
    		rd, wr := isAllowedAccess(bucket.Name)
    		if rd || wr {
    			// Fetch the data usage of the current bucket
    			var size uint64
    			var objectsCount uint64
    			var objectsHist, versionsHist map[string]uint64
    			if !dataUsageInfo.LastUpdate.IsZero() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  6. tests/integration/ambient/baseline_test.go

    			"apply",
    			"--namespace",
    			nsConfig.Name(),
    			"--revision",
    			"foo",
    		})
    		waypointError := retry.UntilSuccess(func() error {
    			fetch := kubetest.NewPodFetch(t.AllClusters()[0], nsConfig.Name(), constants.GatewayNameLabel+"="+"sa")
    			pods, err := fetch()
    			if err != nil {
    				return err
    			}
    			if len(pods) > 0 {
    				// found (this is actually bad, but the failure condition is inverted later a bit awkward)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  7. cmd/kubelet/app/server.go

    	newClientsetFn := func(current *tls.Certificate) (clientset.Interface, error) {
    		// If we have a valid certificate, use that to fetch CSRs. Otherwise use the bootstrap
    		// credentials. In the future it would be desirable to change the behavior of bootstrap
    		// to always fall back to the external bootstrap credentials when such credentials are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  8. pkg/controller/podautoscaler/horizontal.go

    			proposed = int32(float64(periodStartReplicas) * (1 - float64(policy.Value)/100))
    		}
    		result = selectPolicyFn(result, proposed)
    	}
    	return result
    }
    
    // scaleForResourceMappings attempts to fetch the scale for the
    // resource with the given name and namespace, trying each RESTMapping
    // in turn until a working one is found.  If none work, the first error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. src/crypto/tls/conn.go

    	mac     hash.Hash
    	seq     [8]byte // 64-bit sequence number
    
    	scratchBuf [13]byte // to avoid allocs; interface method args escape
    
    	nextCipher any       // next encryption state
    	nextMac    hash.Hash // next MAC algorithm
    
    	level         QUICEncryptionLevel // current QUIC encryption level
    	trafficSecret []byte              // current TLS 1.3 traffic secret
    }
    
    type permanentError struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. src/runtime/mbitmap.go

    	return tp, tp.addr + uintptr(i)*goarch.PtrSize
    }
    
    // next advances the pointers iterator, returning the updated iterator and
    // the address of the next pointer.
    //
    // limit must be the same each time it is passed to next.
    //
    // nosplit because it is used during write barriers and must not be preempted.
    //
    //go:nosplit
    func (tp typePointers) next(limit uintptr) (typePointers, uintptr) {
    	for {
    		if tp.mask != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
Back to top