Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of about 10,000 for ARE (0.06 sec)

  1. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseTestConfigurationsWithProjectDependenciesIntegrationTest.groovy

        def 'dependencies for different features present in test and non-test configurations are not marked with test classpath attribute'() {
            given:
            settingsFile << """
                rootProject.name='test'
            """
    
            file('a/build.gradle') << """
                // introduce "atestImplementation" because configurations are visited in alphabetically order and "testImplementation" would be skipped without special handling
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/batch/v1/generated.proto

      // "Indexed" in a text format. The indexes are represented as decimal integers
      // separated by commas. The numbers are listed in increasing order. Three or
      // more consecutive numbers are compressed and represented by the first and
      // last element of the series, separated by a hyphen.
      // For example, if the completed indexes are 1, 3, 4, 5 and 7, they are
      // represented as "1,3-5,7".
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  3. cluster/addons/calico-policy-controller/networkpolicies-crd.yaml

                      to what Ingress and Egress are present in the policy.  The default
                      is: \n - [ PolicyTypeIngress ], if there are no Egress rules (including
                      the case where there are   also no Ingress rules) \n - [ PolicyTypeEgress
                      ], if there are Egress rules but no Ingress rules \n - [ PolicyTypeIngress,
                      PolicyTypeEgress ], if there are both Ingress and Egress rules.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 44.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/event/ListenerManager.java

         * Exceptions are propagated, and multiple failures are packaged up in a {@link ListenerNotificationException}.
         *
         * <p>A listener is used by a single thread at a time.
         *
         * <p>If there are no registered listeners for the requested type, a broadcaster is returned which does not forward method calls to any listeners.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolutionStrategy.java

         *       }
         *     }
         *   }
         * }
         * </pre>
         *
         * The rules are evaluated in order they are declared. Rules are evaluated after forced modules are applied (see {@link #force(Object...)}
         *
         * @return this
         * @since 1.4
         */
        ResolutionStrategy eachDependency(Action<? super DependencyResolveDetails> rule);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 13:05:50 UTC 2022
    - 16K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/resource/v1alpha2/types_swagger_doc_generated.go

    	"vendorParameters": "VendorParameters are arbitrary setup parameters for all requests of the claim. They are ignored while allocating the claim.",
    	"requests":         "Requests describes all resources that are needed from the driver.",
    }
    
    func (DriverRequests) SwaggerDoc() map[string]string {
    	return map_DriverRequests
    }
    
    var map_PodSchedulingContext = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  7. src/html/template/doc.go

    # Contexts
    
    Assuming {{.}} is `O'Reilly: How are <i>you</i>?`, the table below shows
    how {{.}} appears when used in the context to the left.
    
    	Context                          {{.}} After
    	{{.}}                            O'Reilly: How are &lt;i&gt;you&lt;/i&gt;?
    	<a title='{{.}}'>                O&#39;Reilly: How are you?
    	<a href="/{{.}}">                O&#39;Reilly: How are %3ci%3eyou%3c/i%3e?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:04:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

    All _potentially compatible_ candidate variants are displayed with their attributes.
    
    * Incompatible attributes are presented first, as they usually are the key in understanding why a variant could not be selected.
    * Other attributes are presented second, this includes _requested_ and _compatible_ ones as well as all extra _producer_ attributes that are not requested by the consumer.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/ReferenceEntry.java

      int getHash();
    
      /** Returns the key for this entry. */
      @CheckForNull
      K getKey();
    
      /*
       * Used by entries that use access order. Access entries are maintained in a doubly-linked list.
       * New entries are added at the tail of the list at write time; stale entries are expired from
       * the head of the list.
       */
    
      /** Returns the time that this entry was last accessed, in ns. */
      @SuppressWarnings("GoodTime")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  10. test/typeparam/setsimp.dir/a.go

    		s.m[v] = struct{}{}
    	}
    }
    
    // SubSet removes all elements in s2 from s.
    // Values in s2 that are not in s are ignored.
    func (s Set[Elem]) SubSet(s2 Set[Elem]) {
    	for v := range s2.m {
    		delete(s.m, v)
    	}
    }
    
    // Intersect removes all elements from s that are not present in s2.
    // Values in s2 that are not in s are ignored.
    func (s Set[Elem]) Intersect(s2 Set[Elem]) {
    	for v := range s.m {
    		if !s2.Contains(v) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 26 21:39:54 UTC 2021
    - 2.7K bytes
    - Viewed (0)
Back to top