Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,256 for lasta (0.25 sec)

  1. docs/metrics/v3.md

    | `minio_cluster_iam_plugin_authn_service_succ_max_rtt_ms_minute` | `counter` | When plugin authentication is configured, returns maximum round-trip-time of successful requests in the last full minute |        |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/CacheTest.kt

        server.enqueue(
          MockResponse.Builder()
            .addHeader("Last-Modified: " + formatDate(-1, TimeUnit.HOURS))
            .addHeader("Expires: " + formatDate(1, TimeUnit.HOURS))
            .body("ABC")
            .build(),
        )
        server.enqueue(
          MockResponse.Builder()
            .addHeader("Last-Modified: " + formatDate(-5, TimeUnit.MINUTES))
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/core/v1/persistentvolumeclaimstatus.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Phase field is set to the value of the last call.
    func (b *PersistentVolumeClaimStatusApplyConfiguration) WithPhase(value v1.PersistentVolumeClaimPhase) *PersistentVolumeClaimStatusApplyConfiguration {
    	b.Phase = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/FileSystemWatchingFixture.groovy

            }
    
            int getReceivedFileSystemEventsSinceLastBuild() {
                String eventsSinceLastBuild = spec.result.getOutputLineThatContains("file system events since last build")
                def numberMatcher = eventsSinceLastBuild =~ /Received (\d+) file system events since last build while watching \d+ locations/
                return numberMatcher[0][1] as int
            }
    
            int getRetainedFilesSinceLastBuild() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/AttributeMatchingArtifactVariantSelector.java

            List<TransformedVariant> differentTransforms = new ArrayList<>(1);
    
            // Choosing the last candidate here is arbitrary.
            TransformedVariant last = matches.get(matches.size() - 1);
            differentTransforms.add(last);
    
            // Find any other candidate which does not match with the last candidate.
            for (int i = 0; i < matches.size() - 1; i++) {
                TransformedVariant current = matches.get(i);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 13:33:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. src/crypto/tls/quic.go

    	var last *QUICEvent
    	if len(c.quic.events) > 0 {
    		last = &c.quic.events[len(c.quic.events)-1]
    	}
    	if last == nil || last.Kind != QUICWriteData || last.Level != level {
    		c.quic.events = append(c.quic.events, QUICEvent{
    			Kind:  QUICWriteData,
    			Level: level,
    		})
    		last = &c.quic.events[len(c.quic.events)-1]
    	}
    	last.Data = append(last.Data, data...)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1/customresourcedefinitionnames.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Plural field is set to the value of the last call.
    func (b *CustomResourceDefinitionNamesApplyConfiguration) WithPlural(value string) *CustomResourceDefinitionNamesApplyConfiguration {
    	b.Plural = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/customresourcesubresourcescale.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the SpecReplicasPath field is set to the value of the last call.
    func (b *CustomResourceSubresourceScaleApplyConfiguration) WithSpecReplicasPath(value string) *CustomResourceSubresourceScaleApplyConfiguration {
    	b.SpecReplicasPath = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/writebarrier.go

    			}
    		}
    
    		// The last store becomes the WBend marker. This marker is used by the liveness
    		// pass to determine what parts of the code are preemption-unsafe.
    		// All subsequent memory operations use this memory, so we have to sacrifice the
    		// previous last memory op to become this new value.
    		bEnd.Values = append(bEnd.Values, last)
    		last.Block = bEnd
    		last.reset(OpWBend)
    		last.Pos = last.Pos.WithNotStmt()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/testers/SortedSetNavigationTester.java

      public void testEmptySetLast() {
        try {
          sortedSet.last();
          fail();
        } catch (NoSuchElementException e) {
        }
      }
    
      @CollectionSize.Require(ONE)
      public void testSingletonSetFirst() {
        assertEquals(a, sortedSet.first());
      }
    
      @CollectionSize.Require(ONE)
      public void testSingletonSetLast() {
        assertEquals(a, sortedSet.last());
      }
    
      @CollectionSize.Require(SEVERAL)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top