Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for qualify (0.13 sec)

  1. internal/bucket/lifecycle/lifecycle_test.go

    			objectName:     "obj-1",
    			objectModTime:  time.Now().UTC().Add(-90 * 24 * time.Hour),
    			isDelMarker:    true,
    			expectedAction: DelMarkerDeleteAllVersionsAction,
    		},
    		{
    			// NoneAction since object doesn't qualify for DelMarkerExpiration yet.
    			// Note: TransitionAction doesn't apply to DEL marker
    			inputConfig: `<LifecycleConfiguration>
                                <Rule>
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Instead, Gradle will throw the underlying `MissingMethodException`.
    To mitigate this change, consider the following solutions:
    
    ```groovy
    configurations {
        conf.incoming.afterResolve {
            // Fully qualify the reference.
            project.distributions {
                myDist {
                    contents {}
                }
            }
        }
    }
    ```
    
    ```groovy
    configurations {
        conf
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  3. .teamcity/test-buckets.json

    					"diagnostics",
    					"plugins-application",
    					"language-jvm"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"code-quality",
    					"signing",
    					"ide-native",
    					"plugins-java-library",
    					"antlr",
    					"ide-plugins",
    					"platform-base",
    					"test-kit",
    					"ide",
    					"file-collections",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/provider-task-properties.txt

    Method <org.gradle.api.plugins.quality.AbstractCodeQualityTask.getIgnoreFailures()> does not have raw return type assignable to org.gradle.api.provider.Property in (AbstractCodeQualityTask.java:0)
    Method <org.gradle.api.plugins.quality.Checkstyle.getConfigFile()> does not have raw return type assignable to org.gradle.api.provider.Property in (Checkstyle.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * The structure of Gradle's <<#rel4.7:plain_console_output,plain console output>> has...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/cache/CacheBuilder.java

     * reflected in that iterator. These iterators never throw {@link ConcurrentModificationException}.
     *
     * <p><b>Note:</b> by default, the returned cache uses equality comparisons (the {@link
     * Object#equals equals} method) to determine equality for keys or values. However, if {@link
     * #weakKeys} was specified, the cache uses identity ({@code ==}) comparisons instead for keys.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"self.withUnknownList[0] != self.withUnknownList[1]": 7,
    				"self.withUnknownList[1] == self.withUnknownList[2]": 7,
    				"self.withUnknownList[3] == self.withUnknownList[4]": 6,
    
    				// fields specified on the object schema that are unknown because the field's schema is unknown are also included equality checks
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    <3> Compare the reference to `ArrayList` instance stored in the task field and the reference captured in the `doLast` action.
    <4> Check the equality of stored and captured lists.
    
    Running the build without the configuration cache shows that reference equality is preserved in both cases.
    ----
    ❯ gradle --no-configuration-cache checkEquality
    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. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.plugins.quality.Checkstyle.reports(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (Checkstyle.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  10. pkg/kubelet/status/status_manager_test.go

    		}
    		normalizeStatus(&pod, &oldPodStatus)
    		normalizeStatus(&pod, &podStatus)
    		if !isPodStatusByKubeletEqual(&oldPodStatus, &podStatus) {
    			t.Fatalf("Order of container statuses should not affect normalized equality.")
    		}
    	}
    
    	oldPodStatus := podStatus
    	podStatus.Conditions = append(podStatus.Conditions, v1.PodCondition{
    		Type:   v1.PodConditionType("www.example.com/feature"),
    		Status: v1.ConditionTrue,
    	})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
Back to top