Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 879 for aranges (0.12 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/internal/initialization/loadercache/ClassLoadersCachingIntegrationTest.groovy

        }
    
        def "refreshes when buildscript changes"() {
            given:
            addIsCachedCheck()
            run()
            buildFile << """
                task newTask
            """
    
            expect:
            run "newTask" //knows new task
            isNotCached()
        }
    
        @ToBeFixedForConfigurationCache(because = "test relies on static state")
        def "refreshes when buildSrc changes"() {
            addIsCachedCheck()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 19 20:09:56 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionLifecycleIntegrationTest.groovy

                assert files.files as List == [file('a'), file('b'), file('c')]
            """
    
            expect:
            succeeds()
        }
    
        def "finalized file collection still reflects changes to file system but not changes to locations"() {
            buildFile """
                def files = objects.fileCollection()
                def name = 'a'
                files.from {
                    fileTree({ name }) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 10:55:07 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  3. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/NestedSourceDependencyIntegrationTest.groovy

            when:
            succeeds("resolve")
            then:
            result.assertTasksExecutedInOrder(":second:generate", ":first:generate", ":resolve")
    
            // Updating the remote repository causes changes downstream
            when:
            changeMessage("goodbye world", first, second)
    
            then:
            succeeds("resolve")
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  4. pkg/volume/flexvolume/probe_test.go

    	assert.True(t, strings.HasSuffix(dir2, dir1))
    }
    
    // Probes a driver installed before prober initialization.
    func TestProberExistingDriverBeforeInit(t *testing.T) {
    	// Arrange
    	driverPath, _, watcher, prober := initTestEnvironment(t)
    
    	// Act
    	events, err := prober.Probe()
    
    	// Assert
    	// Probe occurs, 1 plugin should be returned, and 2 watches (pluginDir and all its
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 28 11:14:00 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/input-tracking/src/test/groovy/org/gradle/internal/configuration/inputs/AccessTrackingPropertiesTest.groovy

            0 * onAccess._
    
            where:
            key        | oldValue        | changeCount
            'existing' | 'existingValue' | 0
            'missing'  | null            | 1
        }
    
        def "method replaceAll changes map"() {
            when:
            def map = getMapUnderTestToWrite()
            map.replaceAll((k, v) -> {
                if (k == 'existing') {
                    return 'newValue'
                }
                return v
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/controller/controller_test.go

    			wantMetrics:             expectedFailureMetricValue,
    			wantAddRateLimitedCount: 1,
    			mockGetEncryptionConfigHash: func(ctx context.Context, filepath string) (string, error) {
    				return "always changes and never errors", nil
    			},
    			mockLoadEncryptionConfig: func(ctx context.Context, filepath string, reload bool, apiServerID string) (*encryptionconfig.EncryptionConfiguration, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. src/os/file_plan9.go

    }
    
    // Lchown changes the numeric uid and gid of the named file.
    // If the file is a symbolic link, it changes the uid and gid of the link itself.
    // If there is an error, it will be of type *PathError.
    func Lchown(name string, uid, gid int) error {
    	return &PathError{Op: "lchown", Path: name, Err: syscall.EPLAN9}
    }
    
    // Chown changes the numeric uid and gid of the named file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:35:30 UTC 2024
    - 16K bytes
    - Viewed (0)
  8. docs/en/docs/contributing.md

    During local development, there is a script that builds the site and checks for any changes, live-reloading:
    
    <div class="termy">
    
    ```console
    $ python ./scripts/docs.py live
    
    <span style="color: green;">[INFO]</span> Serving on http://127.0.0.1:8008
    <span style="color: green;">[INFO]</span> Start watching changes
    <span style="color: green;">[INFO]</span> Start detecting changes
    ```
    
    </div>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 17:42:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. src/image/color/ycbcr.go

    	// YCbCr.RGBA method (16 bit color output).
    	//
    	// The solution is to make the rounding adjustment non-constant, and equal
    	// to 257*Y', which ranges over [0, 1<<16-1] as Y' ranges over [0, 255].
    	// YY1 is then defined as:
    	//	YY1 = 65536*Y' + 257*Y'
    	// or equivalently:
    	//	YY1 = Y' * 0x10101
    	yy1 := int32(y) * 0x10101
    	cb1 := int32(cb) - 128
    	cr1 := int32(cr) - 128
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  10. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/fixtures/S3Server.groovy

                        'Date': DATE_HEADER,
                        'ETag': { calculateEtag(file) },
                        'Server': SERVER_AMAZON_S3,
                        'Accept-Ranges': 'bytes',
                        'Content-Type': 'application/octet-stream',
                        'Content-Length': "0",
                        'Last-Modified': RCF_822_DATE_FORMAT.print(new Date().getTime())
                    ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 22.4K bytes
    - Viewed (0)
Back to top