Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 1,221 for lasta (0.05 sec)

  1. cmd/metrics-v3-replication.go

    	replicationLastMinuteQueuedBytesMD = NewGaugeMD(replicationLastMinuteQueuedBytes,
    		"Number of bytes queued for replication in the last full minute")
    	replicationLastMinuteQueuedCountMD = NewGaugeMD(replicationLastMinuteQueuedCount,
    		"Number of objects queued for replication in the last full minute")
    	replicationMaxActiveWorkersMD = NewGaugeMD(replicationMaxActiveWorkers,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto

      optional string status = 2;
    
      // Last time we probed the condition.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastProbeTime = 3;
    
      // Last time the condition transitioned from one status to another.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 4;
    
      // Unique, one-word, CamelCase reason for the condition's last transition.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/buildlifecycle/basic/kotlin/build.gradle.kts

        }
    }
    
    tasks.register("testBoth") {
        doFirst {
            println("This is executed first during the execution phase.")
        }
        doLast {
            println("This is executed last during the execution phase.")
        }
        println("This is executed during the configuration phase as well, because :testBoth is used in the build.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 638 bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/file/FileTreeElement.java

         *
         * @return true if this element is a directory.
         */
        boolean isDirectory();
    
        /**
         * Returns the last modified time of this file at the time of file traversal.
         *
         * @return The last modified time.
         */
        long getLastModified();
    
        /**
         * Returns the size of this file at the time of file traversal.
         *
         * @return The size, in bytes.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 13:43:13 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/events/v1beta1/generated.proto

    // continuously for some time.
    message EventSeries {
      // count is the number of occurrences in this series up to the last heartbeat time.
      optional int32 count = 1;
    
      // lastObservedTime is the time when last Event from the series was seen before last heartbeat.
      optional k8s.io.apimachinery.pkg.apis.meta.v1.MicroTime lastObservedTime = 2;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/events/v1beta1/generated.proto

    // continuously for some time.
    message EventSeries {
      // count is the number of occurrences in this series up to the last heartbeat time.
      optional int32 count = 1;
    
      // lastObservedTime is the time when last Event from the series was seen before last heartbeat.
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.MicroTime lastObservedTime = 2;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. src/runtime/trace.go

    	}
    	statusWriter.flush().end()
    
    	// Read everything out of the last gen's CPU profile buffer.
    	traceReadCPU(gen)
    
    	// Flush CPU samples, stacks, and strings for the last generation. This is safe,
    	// because we're now certain no M is writing to the last generation.
    	//
    	// Ordering is important here. traceCPUFlush may generate new stacks and dumping
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/metrics/metrics_test.go

    		resultLabel   string
    		timestamp     int64
    	}{
    		{
    			expectedValue: `
                    # HELP apiserver_encryption_config_controller_automatic_reload_last_timestamp_seconds [ALPHA] Timestamp of the last successful or failed automatic reload of encryption configuration split by apiserver identity.
                    # TYPE apiserver_encryption_config_controller_automatic_reload_last_timestamp_seconds gauge
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 05:47:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/debug.go

    			}
    
    			last := locs.slots[slot]
    			if last.absent() {
    				state.f.Fatalf("at %v: slot %v in register %v with no location entry", v, state.slots[slot], &state.registers[reg])
    				continue
    			}
    			regs := last.Registers &^ (1 << reg)
    			setSlot(slot, VarLoc{regs, last.StackOffset})
    		}
    
    		locs.registers[reg] = locs.registers[reg][:0]
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  10. src/runtime/mspanset.go

    	// popping its corresponding mspan) by the time we get here. Because
    	// we're the last popper, we also don't have to worry about concurrent
    	// pushers (there can't be any). Note that we may not be the popper
    	// which claimed the last slot in the block, we're just the last one
    	// to finish popping.
    	if block.popped.Add(1) == spanSetBlockEntries {
    		// Clear the block's pointer.
    		blockp.StoreNoWB(nil)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top