Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 249 for starts (0.11 sec)

  1. src/index/suffixarray/sais2.go

    		}
    	}
    
    	// We recorded the LMS-substring starts but really want the ends.
    	// Luckily, with two differences, the start indexes and the end indexes are the same.
    	// The first difference is that the rightmost LMS-substring's end index is len(text),
    	// so the caller must pretend that sa[-1] == len(text), as noted above.
    	// The second difference is that the first leftmost LMS-substring start index
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // the order the corresponding events are fired.
    class TestEventListener {
     public:
      virtual ~TestEventListener() {}
    
      // Fired before any test activity starts.
      virtual void OnTestProgramStart(const UnitTest& unit_test) = 0;
    
      // Fired before each iteration of tests starts.  There may be more than
      // one iteration if GTEST_FLAG(repeat) is set. iteration is the iteration
      // index, starting from 0.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // the order the corresponding events are fired.
    class TestEventListener {
     public:
      virtual ~TestEventListener() {}
    
      // Fired before any test activity starts.
      virtual void OnTestProgramStart(const UnitTest& unit_test) = 0;
    
      // Fired before each iteration of tests starts.  There may be more than
      // one iteration if GTEST_FLAG(repeat) is set. iteration is the iteration
      // index, starting from 0.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

         * `input` does not have a scheme that starts at `pos`.
         */
        private fun schemeDelimiterOffset(
          input: String,
          pos: Int,
          limit: Int,
        ): Int {
          if (limit - pos < 2) return -1
    
          val c0 = input[pos]
          if ((c0 < 'a' || c0 > 'z') && (c0 < 'A' || c0 > 'Z')) return -1 // Not a scheme start char.
    
          characters@ for (i in pos + 1 until limit) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apps/v1/types.go

    	// +optional
    	Spec StatefulSetSpec `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
    
    	// Status is the current status of Pods in this StatefulSet. This data
    	// may be out of date by some window of time.
    	// +optional
    	Status StatefulSetStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
    }
    
    // PodManagementPolicyType defines the policy for creating pods under a stateful set.
    // +enum
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// +optional
    	Spec ScaleSpec `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
    
    	// current status of the scale. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status. Read-only.
    	// +optional
    	Status ScaleStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
    }
    
    // +genclient
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  7. pkg/controller/disruption/disruption_test.go

    	if disruptionsAllowed > 0 {
    		if cond.Status != metav1.ConditionTrue {
    			t.Fatalf("Expected condition %q to have status %q, but was %q",
    				policy.DisruptionAllowedCondition, metav1.ConditionTrue, cond.Status)
    		}
    	} else {
    		if cond.Status != metav1.ConditionFalse {
    			t.Fatalf("Expected condition %q to have status %q, but was %q",
    				policy.DisruptionAllowedCondition, metav1.ConditionFalse, cond.Status)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

      return $gateway
    }
    
    # Get pod IP range start based (the third address) on pod cidr
    # We reserve the first two in the cidr range for gateways. Start the cidr
    # range from the third so that IPAM does not allocate those IPs to pods.
    function Get_PodIP_Range_Start([string] $cidr) {
      $network=Get_NetworkDecimal_From_CIDR($cidr)
      $start=ConvertTo_DottedDecimalIP($network+3)
      return $start
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. src/runtime/traceback.go

    	gpstatus &^= _Gscan // drop the scan bit
    
    	// Basic string status
    	var status string
    	if 0 <= gpstatus && gpstatus < uint32(len(gStatusStrings)) {
    		status = gStatusStrings[gpstatus]
    	} else {
    		status = "???"
    	}
    
    	// Override.
    	if gpstatus == _Gwaiting && gp.waitreason != waitReasonZero {
    		status = gp.waitreason.String()
    	}
    
    	// approx time the G is blocked, in minutes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //   FlushInfoLog() - flushes informational log messages.
    //
    // Stdout and stderr capturing:
    //   CaptureStdout()     - starts capturing stdout.
    //   GetCapturedStdout() - stops capturing stdout and returns the captured
    //                         string.
    //   CaptureStderr()     - starts capturing stderr.
    //   GetCapturedStderr() - stops capturing stderr and returns the captured
    //                         string.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
Back to top