Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 215 for Hour (0.07 sec)

  1. cmd/iam-store.go

    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  2. cmd/test-utils_test.go

    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    	return "false"
    }
    
    var (
    	testArgs []string
    	pkgArgs  []string
    	pkgs     []*load.Package
    
    	testHelp bool // -help option passed to test via -args
    
    	testKillTimeout    = 100 * 365 * 24 * time.Hour // backup alarm; defaults to about a century if no timeout is set
    	testWaitDelay      time.Duration                // how long to wait for output to close after a test binary exits; zero means unlimited
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. pkg/controller/endpoint/endpoints_controller_test.go

    var emptyNodeName string
    var triggerTime = time.Date(2018, 01, 01, 0, 0, 0, 0, time.UTC)
    var triggerTimeString = triggerTime.Format(time.RFC3339Nano)
    var oldTriggerTimeString = triggerTime.Add(-time.Hour).Format(time.RFC3339Nano)
    
    var ipv4only = []v1.IPFamily{v1.IPv4Protocol}
    var ipv6only = []v1.IPFamily{v1.IPv6Protocol}
    var ipv4ipv6 = []v1.IPFamily{v1.IPv4Protocol, v1.IPv6Protocol}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  5. src/os/os_test.go

    	case "js":
    		startAtime = startAtime.Truncate(time.Second)
    		startMtime = startMtime.Truncate(time.Second)
    	}
    	at0 := startAtime
    	mt0 := startMtime
    	t0 := startMtime.Truncate(time.Second).Add(1 * time.Hour)
    
    	tests := []struct {
    		aTime     time.Time
    		mTime     time.Time
    		wantATime time.Time
    		wantMTime time.Time
    	}{
    		{
    			aTime:     time.Time{},
    			mTime:     time.Time{},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  6. docs/changelogs/changelog_3x.md

        your build system.
    
        OkHttp will use Conscrypt if you set the `okhttp.platform` system property
        to `conscrypt`.
    
        Alternatively, OkHttp will also use Conscrypt if you install it as your
        preferred security provider. To do so, add the following code to execute
        before you create your `OkHttpClient`.
    
        ```
        Security.insertProviderAt(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    === Troubleshooting
    
    The IDE support is provided by two components:
    
    * The Kotlin Plugin used by IntelliJ IDEA/Android Studio
    * Gradle
    
    The level of support varies based on the versions of each.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    If you enable and configure the configuration cache from your `gradle.properties` file, then the configuration cache will be enabled when your IDE delegates to Gradle.
    There's nothing more to do.
    
    `gradle.properties` is usually checked in to source control.
    If you don't want to enable the configuration cache for your whole team yet you can also enable the configuration cache from your IDE only as explained below.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    For example, it's legitimate to think that artifacts produced in your company and found in your internal repository only are safe, but you want to check every external component.
    
    NOTE: This is a typical _company policy_.
    In practice, **nothing** prevents your internal repository from being compromised, so it's a good idea to check your internal artifacts too!
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  10. cmd/api-errors.go

    		HTTPStatusCode: http.StatusTooManyRequests,
    	},
    	ErrUnsupportedMetadata: {
    		Code:           "InvalidArgument",
    		Description:    "Your metadata headers are not supported.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrUnsupportedHostHeader: {
    		Code:           "InvalidArgument",
    		Description:    "Your Host header is malformed.",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
Back to top