Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 91 for Fermat (0.22 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            String leakDetectionVersion = javaVersion.isCompatibleWith(JavaVersion.VERSION_11) ? "1.17" : "1.14";
            String leakDetectionJar = String.format("file-leak-detector-%s-jar-with-dependencies.jar", leakDetectionVersion);
            String leakDetectorUrl = String.format("https://repo.jenkins-ci.org/releases/org/kohsuke/file-leak-detector/%s/%s", leakDetectionVersion, leakDetectionJar);
            this.beforeExecute(executer -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. src/time/time.go

    // the current process, the serialized forms generated by t.GobEncode,
    // t.MarshalBinary, t.MarshalJSON, and t.MarshalText omit the monotonic
    // clock reading, and t.Format provides no format for it. Similarly, the
    // constructors [time.Date], [time.Parse], [time.ParseInLocation], and [time.Unix],
    // as well as the unmarshalers t.GobDecode, t.UnmarshalBinary.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    				fmt.Sprintf("Back-off restarting failed container %s in pod %s", container.Name, format.Pod(pod)))
    		}
    		err := fmt.Errorf("back-off %s restarting failed container=%s pod=%s", backOff.Get(key), container.Name, format.Pod(pod))
    		klog.V(3).InfoS("Back-off restarting failed container", "err", err.Error())
    		return true, err.Error(), kubecontainer.ErrCrashLoopBackOff
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    				fmt.Sprintf(`"successfully rotated DEK" uid="panda" useSeed=false newKeyIDHash="sha256:6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b" oldKeyIDHash="" expirationTimestamp="%s"`,
    					now.Add(3*time.Minute).Format(time.RFC3339)),
    			},
    			wantErr: "",
    		},
    		{
    			name:        "happy path, with previous state",
    			service:     &testKMSv2EnvelopeService{err: fmt.Errorf("broken")}, // not called
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  5. src/net/http/fs_test.go

    			modtime:         htmlModTime,
    			wantLastMod:     htmlModTime.UTC().Format(TimeFormat),
    			wantStatus:      200,
    		},
    		"not_modified_modtime": {
    			file:      "testdata/style.css",
    			serveETag: `"foo"`, // Last-Modified sent only when no ETag
    			modtime:   htmlModTime,
    			reqHeader: map[string]string{
    				"If-Modified-Since": htmlModTime.UTC().Format(TimeFormat),
    			},
    			wantStatus: 304,
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

            OperationDescriptor descriptor = descriptorCache.get(progressEvent.getDescriptor().getId());
            if (descriptor == null) {
                throw new IllegalStateException(String.format("No operation with id %s in progress.", progressEvent.getDescriptor().getId()));
            }
            fileDownloadListeners.getSource().statusChanged(new DefaultStatusEvent(
                progressEvent.getEventTime(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  7. pilot/pkg/model/telemetry_logging_test.go

    	}
    
    	stdout := &fileaccesslog.FileAccessLog{
    		Path: DevStdout,
    		AccessLogFormat: &fileaccesslog.FileAccessLog_LogFormat{
    			LogFormat: &core.SubstitutionFormatString{
    				Format: &core.SubstitutionFormatString_TextFormatSource{
    					TextFormatSource: &core.DataSource{
    						Specifier: &core.DataSource_InlineString{
    							InlineString: EnvoyTextLogFormat,
    						},
    					},
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  8. cmd/iam-store.go

    	bootstrapTraceMsg("Load IAM format file")
    	var iamFmt iamFormat
    	path := getIAMFormatFilePath()
    	if err := store.loadIAMConfig(ctx, &iamFmt, path); err != nil && !errors.Is(err, errConfigNotFound) {
    		// if IAM format
    		return err
    	}
    
    	if iamFmt.Version >= iamFormatVersion1 {
    		// Nothing to do.
    		return nil
    	}
    
    	bootstrapTraceMsg("Write IAM format file")
    	// Save iam format to version 1.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  9. cmd/erasure-server-pool.go

    		Object: object,
    	}
    }
    
    func (z *erasureServerPools) getPoolAndSet(id string) (poolIdx, setIdx, diskIdx int, err error) {
    	for poolIdx := range z.serverPools {
    		format := z.serverPools[poolIdx].format
    		for setIdx, set := range format.Erasure.Sets {
    			for i, diskID := range set {
    				if diskID == id {
    					return poolIdx, setIdx, i, nil
    				}
    			}
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener_test.go

    	textFormat := cfg.GetFields()["log_format"].GetStructValue().GetFields()["text_format_source"].GetStructValue().
    		GetFields()["inline_string"].GetStringValue()
    	if format != "" && textFormat != format {
    		t.Fatalf("expected format to be %s, but got %s", format, textFormat)
    	}
    }
    
    func TestHttpProxyListener(t *testing.T) {
    	m := mesh.DefaultMeshConfig()
    	m.ProxyHttpPort = 15007
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top