Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 130 for currentCA (0.14 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. 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)
  3. 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)
  4. src/cmd/link/internal/ld/xcoff.go

    type xcoffSymSrcFile struct {
    	name         string
    	file         *XcoffSymEnt64   // Symbol of this C_FILE
    	csectAux     *XcoffAuxCSect64 // Symbol for the current .csect
    	csectSymNb   uint64           // Symbol number for the current .csect
    	csectVAStart int64
    	csectVAEnd   int64
    }
    
    var (
    	currDwscnoff   = make(map[string]uint64) // Needed to create C_DWARF symbols
    	currSymSrcFile xcoffSymSrcFile
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  5. configure.py

      if curr_version.startswith('bazel '):
        curr_version = curr_version.split('bazel ')[1]
    
      curr_version_int = convert_version_to_int(curr_version)
    
      # Check if current bazel version can be detected properly.
      if not curr_version_int:
        print('WARNING: current bazel installation is not a release version.')
        return curr_version
    
      print('You have bazel %s installed.' % curr_version)
      return curr_version
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. 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)
  7. src/internal/trace/order.go

    	// - Unblock of the goroutine to switch to.
    	// - Block or destroy of the current goroutine.
    	// - Start executing the next goroutine.
    	//
    	// Because it acts like a GoStart for the next goroutine, we can
    	// only advance it if the sequence numbers line up.
    	//
    	// The current goroutine on the thread must be actively running.
    	if err := validateCtx(curCtx, event.UserGoReqs); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener.go

    	// Extract the current filter chain matches, for every new filter chain match being added, check if there is a matching
    	// one in previous filter chains, if so, skip adding this filter chain with a warning.
    
    	merged := make([]*filterChainOpts, 0, len(current.chains)+len(incoming))
    	// Start with the current listener's filter chains.
    	merged = append(merged, current.chains...)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K 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