Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,526 for oranges (0.32 sec)

  1. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/FingerprintCompareStrategyTest.groovy

        def "empty snapshots (#strategy.class.simpleName)"() {
            expect:
            changes(strategy,
                [:],
                [:]
            ) as List == []
    
            where:
            strategy << ALL_STRATEGIES
        }
    
        def "trivial addition (#strategy.class.simpleName)"() {
            expect:
            changes(strategy,
                ["new/one": fingerprint("one")],
                [:]
            ) as List == results
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/ClasspathCompareStrategyTest.groovy

        def "empty snapshots"() {
            expect:
            changes(
                [:],
                [:]
            ) == []
        }
    
        def "trivial addition"() {
            expect:
            changes(
                ["one-new": fingerprint("one")],
                [:]
            ) == [added("one-new": "one")]
        }
    
        def "non-trivial addition"() {
            expect:
            changes(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

            given:
            mavenHttpRepo.module("test", "test", "1.2")
                .adhocVariants()
                .variant('runtime', [color: 'blue'])
                .variant('test', [color: 'orange'])
                .withModuleMetadata()
                .publish()
                .allowAll()
    
            createDirs("a", "b")
            settingsFile << "include 'a', 'b'"
            setupBuildWithColorAttributes()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  4. pkg/api/v1/service/util.go

    	for _, s := range ipnets.StringSlice() {
    		if s == "0.0.0.0/0" {
    			return true
    		}
    	}
    	return false
    }
    
    // GetLoadBalancerSourceRanges first try to parse and verify LoadBalancerSourceRanges field from a service.
    // If the field is not specified, turn to parse and verify the AnnotationLoadBalancerSourceRangesKey annotation from a service,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 30 15:56:47 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ResolveInputChangesStep.java

                return null;
            }
            ExecutionStateChanges changes = context.getChanges()
                .orElseThrow(() -> new IllegalStateException("Changes are not tracked, unable determine incremental changes."));
            InputChangesInternal inputChanges = changes.createInputChanges();
            if (!inputChanges.isIncremental()) {
                LOGGER.info("The input changes require a full rebuild for incremental {}.", work.getDisplayName());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:50 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. src/cmd/trace/goroutines.go

    			{{end}}
    			</div>
    		</td>
    		{{$Goroutine := .}}
    		{{range $.NonOverlappingStats}}
    			{{$Time := index $Goroutine.NonOverlappingStats .}}
    			<td> {{$Time.String}}</td>
    		{{end}}
    	</tr>
    {{end}}
    </table>
    
    <h3 id="ranges">Special ranges</h3>
    
    The table below describes how much of the traced period each goroutine spent in
    certain special time ranges.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    			panic(e)
    		}
    	}()
    
    	// Run with no changes and all changes, to figure out which direction we're searching.
    	// The goal is to find the minimal set of changes to toggle
    	// starting with the state where everything works.
    	// If "no changes" succeeds and "all changes" fails,
    	// we're looking for a minimal set of changes to enable to provoke the failure
    	// (broken = runY, b.Negate = false)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  8. docs/en/layouts/custom.yml

            "green":       "#4cae4f",
            "light-green": "#8bc34b",
            "lime":        "#cbdc38",
            "yellow":      "#ffec3d",
            "amber":       "#ffc105",
            "orange":      "#ffa724",
            "deep-orange": "#ff6e42",
            "brown":       "#795649",
            "grey":        "#757575",
            "blue-grey":   "#546d78",
            "black":       "#000000",
            "white":       "#ffffff"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 26 14:05:43 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/IncrementalInputChanges.java

    public class IncrementalInputChanges implements InputChangesInternal {
    
        private final InputFileChanges changes;
        private final IncrementalInputProperties incrementalInputProperties;
    
        public IncrementalInputChanges(InputFileChanges changes, IncrementalInputProperties incrementalInputProperties) {
            this.changes = changes;
            this.incrementalInputProperties = incrementalInputProperties;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. CONTRIBUTING.md

    $ git fetch upstream
    $ git merge upstream/master
    ...
    ```
    
    ### Create your feature branch
    
    Before making code changes, make sure you create a separate branch for these changes
    
    ```
    git checkout -b my-new-feature
    ```
    
    ### Test MinIO server changes
    
    After your code changes, make sure
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 2.8K bytes
    - Viewed (0)
Back to top