Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for nextch (0.61 sec)

  1. src/regexp/testdata/testregex.c

    	}
    }
    
    static void
    matchprint(regmatch_t* match, int nmatch, int nsub, char* ans, unsigned long test)
    {
    	int	i;
    
    	for (; nmatch > nsub + 1; nmatch--)
    		if ((match[nmatch-1].rm_so != -1 || match[nmatch-1].rm_eo != -1) && (!(test & TEST_IGNORE_POSITION) || match[nmatch-1].rm_so >= 0 && match[nmatch-1].rm_eo >= 0))
    			break;
    	for (i = 0; i < nmatch; i++)
    	{
    		printf("(");
    		matchoffprint(match[i].rm_so);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/internal/obj/arm/asm5.go

    // it threatens to go out of range of a 12-bit PC-relative offset.
    //
    // nextpc is the tentative next PC at which the pool could be emitted.
    // checkpool should be called *before* emitting the instruction that
    // would cause the PC to reach nextpc.
    // If nextpc is too far from the first pool reference, checkpool will
    // flush the pool immediately after p.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top