Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 811 for selectJdk (0.24 sec)

  1. platforms/documentation/docs/src/snippets/tasks/inputNormalizationPropertiesFiles/kotlin/build.gradle.kts

    plugins {
        java
    }
    
    // tag::ignore-property-selected[]
    normalization {
        runtimeClasspath {
            properties("**/build-info.properties") {
                ignoreProperty("timestamp")
            }
        }
    }
    // end::ignore-property-selected[]
    
    // tag::ignore-property-all[]
    normalization {
        runtimeClasspath {
            properties {
                ignoreProperty("timestamp")
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 417 bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ResolvedComponentResult.java

         * times with different variants (for example, the main component and its test fixtures). The dependencies
         * of each variant are different, but the {@link #getDependencies() method} doesn't give access to each
         * variant individual dependencies.
         *
         * <p>
         * The variant must be a {@linkplain #getVariants() selected variant} of this component.
         * </p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 05 19:24:33 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/orig/view/advance.jsp

    								key="labels.advance_search_filetype_html"
    							/></option>
    						<option value="pdf" <c:if test="${as.filetype.contains('pdf')}">selected</c:if>><la:message
    								key="labels.advance_search_filetype_pdf"
    							/></option>
    						<option value="word" <c:if test="${as.filetype.contains('word')}">selected</c:if>><la:message
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/s390x/rotate.go

    	}
    }
    
    // RotateLeft generates a new set of parameters with the rotation amount
    // increased by the given value. The selected bits are left unchanged.
    func (r RotateParams) RotateLeft(amount uint8) RotateParams {
    	r.Amount += amount
    	r.Amount &= 63
    	return r
    }
    
    // OutMask provides a mask representing the selected bits.
    func (r RotateParams) OutMask() uint64 {
    	// Note: z must be unsigned for bootstrap compiler
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 21 19:19:04 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/ResolveTestFixture.groovy

                for (EdgeBuilder edge : edges) {
                    def selected = edge.selected
                    if (seen.add(selected)) {
                        nodes.add(selected)
                        visitDeps(selected.deps, nodes, seen)
                    }
                }
            }
    
            Set<ExpectedArtifact> getArtifactNodes() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryCrossProjectTargetJvmVersionIntegrationTest.groovy

                                'org.gradle.jvm.version': selected,
                                'org.gradle.usage':'java-api',
                                'org.gradle.libraryelements': 'jar'
                        ])
                        artifact(name: "producer-jdk${selected}")
                    }
                }
            }
    
            where:
            requested | selected
            6         | 6
            7         | 7
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/DependencyInsightReportTask.java

            ) {
                ImmutableList.Builder<String> header = ImmutableList.<String>builder()
                    .add("Attribute Name", "Provided", "Requested");
                if (!selected) {
                    header.add("Compatibility");
                }
    
                ImmutableList<StyledTable.Row> rows = buildRows(attributes, requested, buckets, selected);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ComponentState.java

        }
    
        /**
         * Restarts all incoming edges for this component, queuing them up for processing.
         */
        public void restartIncomingEdges(ComponentState selected) {
            for (NodeState node : nodes) {
                node.restart(selected);
            }
        }
    
        public void setSelectors(ModuleSelectors<SelectorState> selectors) {
            this.selectors = selectors;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 17K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/buildlist.go

    	return mg.g.RequiredBy(m)
    }
    
    // Selected returns the selected version of the module with the given path.
    //
    // If no version is selected, Selected returns version "none".
    func (mg *ModuleGraph) Selected(path string) (version string) {
    	return mg.g.Selected(path)
    }
    
    // WalkBreadthFirst invokes f once, in breadth-first order, for each module
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. pkg/kube/kclient/client_test.go

    	retry.UntilOrFail(t, func() bool {
    		return slices.Equal(tracker.Events(), []string{"add/selected"}) ||
    			slices.Equal(tracker.Events(), []string{"add/selected", "add/selected"})
    	})
    	testns.Delete("selected", "")
    	// We may or may not get the deletion event, currently.
    	// Like above for adds, we cannot guarantee exactly once delivery. For adds we chose to give 1 or 2 events.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 15:12:54 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top