Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,120 for promises (0.2 sec)

  1. platforms/core-runtime/service-provider/src/main/java/org/gradle/internal/service/Provides.java

    import java.lang.annotation.Target;
    
    /**
     * Used to register service factory methods on a {@link ServiceRegistrationProvider}.
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.METHOD)
    @Keep
    public @interface Provides {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:03 UTC 2024
    - 1K bytes
    - Viewed (0)
  2. api/maven-api-di/src/main/java/org/apache/maven/api/di/Provides.java

    import static java.lang.annotation.RetentionPolicy.RUNTIME;
    
    /**
     * Can be used on a static method to provide a bean.
     */
    @Target(METHOD)
    @Retention(RUNTIME)
    @Documented
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:45:47 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. pkg/security/apparmor/testdata/profiles

    Tim St. Clair <******@****.***> 1469837612 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 11 17:31:25 UTC 2016
    - 978 bytes
    - Viewed (0)
  4. hack/grab-profiles.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script grabs profiles from running components.
    # Usage: `hack/grab-profiles.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    function grab_profiles_from_component {
      local requested_profiles=$1
      local mem_pprof_flags=$2
      local binary=$3
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 17 06:47:05 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  5. releasenotes/notes/helm-profiles.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    
    # issue is a list of GitHub issues resolved in this note.
    issue:
      - 47838
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 256 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    								"access_token": "groups_token"
    						}
    				},
    				"exp": %d
    			}`, valid.Unix()),
    			claimToResponseMap: map[string]string{
    				// Doesn't contain the "groups" claim as it promises.
    				"groups": fmt.Sprintf(`{
    					"iss": "{{.URL}}",
    				    "aud": "my-client",
    					"exp": %d
    			     }`, valid.Unix()),
    			},
    			openIDConfig: `{
    					"issuer": "{{.URL}}",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/CacheTest.kt

        )
        val url = server.url("/a")
        assertThat(get(url).body.string()).isEqualTo("a")
        val i: Iterator<String> = cache.urls()
        cache.evictAll()
    
        // The URL was evicted before hasNext() made any promises.
        assertThat(i.hasNext()).isFalse()
        assertFailsWith<NoSuchElementException> {
          i.next()
        }
      }
    
      /** Test https://github.com/square/okhttp/issues/1712.  */
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  8. src/net/http/h2_bundle.go

    			http2asciiEqualFold(k, "expect") ||
    			http2asciiEqualFold(k, "host") {
    			return fmt.Errorf("promised request headers cannot include %q", k)
    		}
    	}
    	if err := http2checkValidHTTP2RequestHeaders(opts.Header); err != nil {
    		return err
    	}
    
    	// The RFC effectively limits promised requests to GET and HEAD:
    	// "Promised requests MUST be cacheable [GET, HEAD, or POST], and MUST be safe [GET or HEAD]"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

         */
        @Deprecated
        MavenExecutionRequest addActiveProfiles(List<String> profiles);
    
        /**
         * @deprecated Since Maven 4: use {@link #getProfileActivation()}.
         */
        @Deprecated
        MavenExecutionRequest setActiveProfiles(List<String> profiles);
    
        /**
         * @return The list of profiles that the user wants to activate.
         * @deprecated Since Maven 4: use {@link #getProfileActivation()}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Dec 20 13:03:57 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  10. manifests/helm-profiles/README.md

    # Helm Profiles
    
    This folder provides a variety of "profiles" for helm installation.
    While a user can just explicitly pass this with `--values/-f`.
    
    However, Istio also provides a feature to bundle these with the charts, which is convenient when installing from remote charts.
    For details, see `copy-templates` Makefile target, and `manifests/zzz_profile.yaml`.
    
    Any changes to this folder should have a `make copy-templates` applied afterwards.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 708 bytes
    - Viewed (0)
Back to top