Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 693 for minuti (0.2 sec)

  1. maven-artifact/src/main/java/org/apache/maven/artifact/repository/ArtifactRepositoryPolicy.java

                String s = updatePolicy.substring(UPDATE_POLICY_INTERVAL.length() + 1);
                int minutes = Integer.parseInt(s);
                Calendar cal = Calendar.getInstance();
                cal.add(Calendar.MINUTE, -minutes);
                if (cal.getTime().after(lastModified)) {
                    checkForUpdates = true;
                }
            }
            // else assume "never"
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java

            }
    
            public boolean isTarget(final int hours, final int minutes, final int day) {
                if (!reverse) {
                    return compareTime(fromHours, fromMinutes, hours, minutes) >= 0 && compareTime(hours, minutes, toHours, toMinutes) >= 0
                            && isInDays(day);
                }
                if ((compareTime(hours, minutes, toHours, toMinutes) >= 0 && isInDays(day + 1))
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. pkg/apis/authentication/validation/validation.go

    	allErrs := field.ErrorList{}
    	specPath := field.NewPath("spec")
    
    	const min = 10 * time.Minute
    	if tr.Spec.ExpirationSeconds < int64(min.Seconds()) {
    		allErrs = append(allErrs, field.Invalid(specPath.Child("expirationSeconds"), tr.Spec.ExpirationSeconds, "may not specify a duration less than 10 minutes"))
    	}
    	if tr.Spec.ExpirationSeconds > 1<<32 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 31 00:32:49 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  4. internal/http/transports.go

    	// 		// ReadIdleTimeout is the timeout after which a health check using ping
    	// 		// frame will be carried out if no frame is received on the
    	// 		// connection. 5 minutes is sufficient time for any idle connection.
    	// 		trhttp2.ReadIdleTimeout = 5 * time.Minute
    	// 		// PingTimeout is the timeout after which the connection will be closed
    	// 		// if a response to Ping is not received.
    	// 		trhttp2.PingTimeout = dialTimeout
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. cmd/lock-rest-server.go

    	lockMaintenanceInterval = 1 * time.Minute
    
    	// Lock validity duration
    	lockValidityDuration = 1 * time.Minute
    )
    
    // lockMaintenance loops over all locks and discards locks
    // that have not been refreshed for some time.
    func lockMaintenance(ctx context.Context) {
    	if !globalIsDistErasure {
    		return
    	}
    
    	// Initialize a new ticker with 1 minute between each ticks.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 21 01:09:35 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ir/mini.go

    Keith Randall <******@****.***> 1658254141 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 31 22:09:44 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  7. src/time/time_test.go

    	{Minute, 1, Minute},
    	{2 * Minute, Minute, 2 * Minute},
    	{2*Minute + 10*Second, Minute, 2 * Minute},
    	{2*Minute + 30*Second, Minute, 3 * Minute},
    	{2*Minute + 50*Second, Minute, 3 * Minute},
    	{-Minute, 1, -Minute},
    	{-2 * Minute, Minute, -2 * Minute},
    	{-2*Minute - 10*Second, Minute, -2 * Minute},
    	{-2*Minute - 30*Second, Minute, -3 * Minute},
    	{-2*Minute - 50*Second, Minute, -3 * Minute},
    	{8e18, 3e18, 9e18},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  8. pkg/kubelet/clustertrustbundle/clustertrustbundle_manager_test.go

    	informerFactory := informers.NewSharedInformerFactoryWithOptions(kc, 0)
    
    	ctbInformer := informerFactory.Certificates().V1alpha1().ClusterTrustBundles()
    	ctbManager, _ := NewInformerManager(ctbInformer, 256, 5*time.Minute)
    
    	_, err := ctbManager.GetTrustAnchorsByName("foo", false)
    	if err == nil {
    		t.Fatalf("Got nil error, wanted non-nil")
    	}
    }
    
    func TestGetTrustAnchorsByName(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  9. docs/debugging/pprofgoparser/main.go

    			}
    		case record:
    			save(line)
    		default:
    			z := goroutinesRE.FindStringSubmatch(line)
    			if len(z) == 3 {
    				if z[2] != "" {
    					a, _ := strconv.Atoi(z[2])
    					t = time.Duration(a) * time.Minute
    					save(line)
    					record = true
    				} else {
    					skip = true
    				}
    			}
    		}
    	}
    
    	return ret, nil
    }
    
    const helpUsage = `
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Mar 06 11:43:16 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. pkg/kubelet/util/manager/cache_based_manager_test.go

    	fakeClient.ClearActions()
    
    	// Set 5-minute ttl and see if this works.
    	ttl = time.Duration(5) * time.Minute
    	store.Get("ns", "name")
    	actions = fakeClient.Actions()
    	assert.Equal(t, 0, len(actions), "unexpected actions: %#v", actions)
    	// Still no effect after 4 minutes.
    	fakeClock.Step(4 * time.Minute)
    	store.Get("ns", "name")
    	actions = fakeClient.Actions()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.6K bytes
    - Viewed (0)
Back to top