Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 231 for current$ (0.66 sec)

  1. api/discovery/aggregated_v2.json

      "items": [
        {
          "metadata": {
            "creationTimestamp": null,
            "name": "apiregistration.k8s.io"
          },
          "versions": [
            {
              "freshness": "Current",
              "resources": [
                {
                  "categories": [
                    "api-extensions"
                  ],
                  "resource": "apiservices",
                  "responseKind": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTaskIntegrationTest.groovy

    Capabilities
        - org:myLib:1.0 (default capability)
    Attributes
        - org.gradle.category            = library
        - org.gradle.dependency.bundling = external
        - org.gradle.jvm.version         = ${JavaVersion.current().majorVersion}
        - org.gradle.libraryelements     = jar
        - org.gradle.usage               = java-api
    Artifacts
        - $jarPath (artifactType = jar)
    
    Secondary Variants (*)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. api/discovery/aggregated_v2beta1.json

      "items": [
        {
          "metadata": {
            "creationTimestamp": null,
            "name": "apiregistration.k8s.io"
          },
          "versions": [
            {
              "freshness": "Current",
              "resources": [
                {
                  "categories": [
                    "api-extensions"
                  ],
                  "resource": "apiservices",
                  "responseKind": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. pkg/apis/autoscaling/v2/zz_generated.conversion.go

    	out.Name = core.ResourceName(in.Name)
    	if err := Convert_v2_MetricValueStatus_To_autoscaling_MetricValueStatus(&in.Current, &out.Current, s); err != nil {
    		return err
    	}
    	out.Container = in.Container
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 02:34:54 UTC 2021
    - 58.5K bytes
    - Viewed (0)
  5. pkg/apis/autoscaling/v2beta2/zz_generated.conversion.go

    	out.Name = core.ResourceName(in.Name)
    	if err := Convert_v2beta2_MetricValueStatus_To_autoscaling_MetricValueStatus(&in.Current, &out.Current, s); err != nil {
    		return err
    	}
    	out.Container = in.Container
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 60.9K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/horizontal.go

    		if err := a.updateStatusIfNeeded(ctx, hpaStatusOriginal, hpa); err != nil {
    			utilruntime.HandleError(err)
    		}
    		return fmt.Errorf("failed to query scale subresource for %s: %v", reference, err)
    	}
    	setCondition(hpa, autoscalingv2.AbleToScale, v1.ConditionTrue, "SucceededGetScale", "the HPA controller was able to get the target's current scale")
    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. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	parsedRV, _ := strconv.Atoi(outPod.ResourceVersion)
    	currentRV := fmt.Sprintf("%d", parsedRV+1)
    
    	firstNonConsistentReadRV := lastObjecRV
    	if consistentReadsSupported && !cacheEnabled {
    		firstNonConsistentReadRV = currentRV
    	}
    
    	secondNonConsistentReadRV := lastObjecRV
    	if consistentReadsSupported {
    		secondNonConsistentReadRV = currentRV
    	}
    
    	tcs := []struct {
    		name             string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // Causes a trace (including the source file path, the current line
    // number, and the given message) to be included in every test failure
    // message generated by code in the current scope.  The effect is
    // undone when the control leaves the current scope.
    //
    // The message argument can be anything streamable to std::ostream.
    //
    // In the implementation, we include the current line number as part
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  9. src/runtime/mprof.go

    // the active profile.
    type mProfCycleHolder struct {
    	value atomic.Uint32
    }
    
    // read returns the current cycle count.
    func (c *mProfCycleHolder) read() (cycle uint32) {
    	v := c.value.Load()
    	cycle = v >> 1
    	return cycle
    }
    
    // setFlushed sets the flushed flag. It returns the current cycle count and the
    // previous value of the flushed flag.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. src/runtime/mgcscavenge.go

    	}
    	if sc.gen == currGen {
    		// In the current generation, if either the current or last generation
    		// is dense, then skip scavenging. Inverting that, we should scavenge
    		// if both the current and last generation were not dense.
    		return sc.inUse < scavChunkHiOccPages && sc.lastInUse < scavChunkHiOccPages
    	}
    	// If we're one or more generations ahead, we know inUse represents the current
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
Back to top