Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 262 for opldrr (0.1 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/versions/KotlinGradlePluginVersions.groovy

            }
        }
    
        String getLatestStableOrRC() {
            return latestsStableOrRC.last()
        }
    
        /**
         * Determines if the provided version is older than the most recent tested stable.
         */
        boolean isOld(String kgpVersion) {
            isOld(VersionNumber.parse(kgpVersion))
        }
    
        boolean isOld(VersionNumber kgpVersion) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiExecution.groovy

        }
    
        @Override
        boolean isTestEnabled(AbstractMultiTestInterceptor.TestDetails testDetails) {
            if (!gradle.daemonIdleTimeoutConfigurable && OperatingSystem.current().isWindows()) {
                // Older daemon don't have configurable ttl and they hung for 3 hours afterwards.
                // This is a real problem on windows due to eager file locking and continuous CI failures.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/crossVersionTest/groovy/org/gradle/api/internal/tasks/compile/tooling/JavaCompileTaskOperationResultCrossVersionTest.groovy

            operation.assertIsTask()
            operation.result instanceof JavaCompileTaskOperationResult
        }
    
        @TargetGradleVersion(">=4.6 <5.1")
        def "reports regular success result for older Gradle versions"() {
            when:
            def events = runBuild("compileJava")
    
            then:
            def operation = events.operation("Task :compileJava")
            operation.assertIsTask()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r33/BuildActionCompositeBuildCrossVersionSpec.groovy

    import spock.lang.Issue
    
    /**
     * Tests for the tooling API, which check fetching models and running actions using different
     * combinations of versions of the TAPI and Gradle.
     *
     * Support for clients using a tooling API version older than 3.0 was removed in Gradle 5.0, so
     * there is a class-level lower bound for both versions.
     *
     * In addition, in version 6.6 the deprecated {@code DependencySubstitutions#with(ComponentSelector)} method
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. pkg/kube/controllers/common.go

    			if newObj == nil {
    				return
    			}
    			if onlyIncludeSpecChanges && oldObj.GetResourceVersion() == newObj.GetResourceVersion() {
    				return
    			}
    			newer := filter(newObj)
    			older := filter(oldObj)
    			if !newer && !older {
    				return
    			}
    			handler(newObj)
    		},
    		DeleteFunc: single,
    	}
    }
    
    // Extract pulls a T from obj, handling tombstones.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 08:27:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/NewerGradleNeededByPluginFailureDescriber.java

        }
    
        private String suggestDowngradePlugin(String pluginId) {
            return "Downgrade plugin " + pluginId + " to an older version compatible with " + currentGradleVersion + ".";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. internal/config/api/help.go

    			Optional:    true,
    			Type:        "number",
    		},
    		config.HelpKV{
    			Key:         apiStaleUploadsExpiry,
    			Description: `set to expire stale multipart uploads older than this values` + defaultHelpPostfix(apiStaleUploadsExpiry),
    			Optional:    true,
    			Type:        "duration",
    		},
    		config.HelpKV{
    			Key:         apiStaleUploadsCleanupInterval,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 15 01:07:19 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/templates/clusterrole.yaml

      - apiGroups: ["admissionregistration.k8s.io"]
        resources: ["validatingwebhookconfigurations"]
        verbs: ["get", "list", "watch", "update"]
    
      # istio configuration
      # removing CRD permissions can break older versions of Istio running alongside this control plane (https://github.com/istio/istio/issues/29382)
      # please proceed with caution
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/client-go/INSTALL.md

    you are likely using a go version prior to 1.16 and must explicitly specify the k8s.io/client-go version you want.
    For example:
    ```sh
    go get k8s.io/client-go@v0.20.4
    ```
    
    ### Conflicting requirements for older client-go versions
    
    If you get a message like
    `module k8s.io/api@latest found, but does not contain package k8s.io/api/auditregistration/v1alpha1`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. pkg/apis/core/v1/conversion.go

    	if err := autoConvert_v1_PodStatus_To_core_PodStatus(in, out, s); err != nil {
    		return err
    	}
    
    	// If both fields (v1.PodIPs and v1.PodIP) are provided and differ, then PodIP is authoritative for compatibility with older kubelets
    	if (len(in.PodIP) > 0 && len(in.PodIPs) > 0) && (in.PodIP != in.PodIPs[0].IP) {
    		out.PodIPs = []core.PodIP{
    			{
    				IP: in.PodIP,
    			},
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:30:55 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top