Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,262 for lasta (0.05 sec)

  1. maven-compat/src/main/java/org/apache/maven/project/interpolation/AbstractStringBasedModelInterpolator.java

                                    if (last != null) {
                                        logger.debug(String.valueOf(last));
                                    }
    
                                    last = next;
                                }
                            }
    
                            if (last != null) {
                                logger.debug(String.valueOf(last));
                            }
                        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/certs/certlist_test.go

    		t.Run(test.name, func(t *testing.T) {
    			var lastCA *KubeadmCert
    			for i, cert := range test.certs {
    				if i > 0 && lastCA == nil {
    					t.Fatalf("CA not present in list before certificate %q", cert.Name)
    				}
    				if cert.CAName == "" {
    					lastCA = cert
    				} else {
    					if cert.CAName != lastCA.Name {
    						t.Fatalf("expected CA name %q, got %q, for certificate %q", lastCA.Name, cert.CAName, cert.Name)
    					}
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/loopclosure/loopclosure.go

    			}
    		}
    		return true
    	})
    }
    
    // forEachLastStmt calls onLast on each "last" statement in a list of statements.
    // "Last" is defined recursively so, for example, if the last statement is
    // a switch statement, then each switch case is also visited to examine
    // its last statements.
    func forEachLastStmt(stmts []ast.Stmt, onLast func(last ast.Stmt)) {
    	if len(stmts) == 0 {
    		return
    	}
    
    	s := stmts[len(stmts)-1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top