Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 378 for patching (0.15 sec)

  1. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/BuildOperationsFileSystemWatchingIntegrationTest.groovy

            """
    
            inputFile.text = "input"
            executer.beforeExecute {
                inDirectory(projectDir)
            }
            executer.requireDaemon()
        }
    
        def "emits build operations when watching is enabled"() {
            when:
            withWatchFs().run "myTask"
            then:
            executedAndNotSkipped(":myTask")
            def startedResult = buildStartedResult()
            startedResult.watchingEnabled
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/FileSystemWatchingFixture.groovy

                def numberMatcher = duringBuildStatusLine =~ /Received (\d+) file system events during the current build while watching \d+ locations/
                return numberMatcher[0][1] as int
            }
    
            int getRetainedFilesInCurrentBuild() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. pkg/registry/core/persistentvolumeclaim/storage/storage_test.go

    	test.TestWatch(
    		validNewPersistentVolumeClaim("foo", metav1.NamespaceDefault),
    		// matching labels
    		[]labels.Set{},
    		// not matching labels
    		[]labels.Set{
    			{"foo": "bar"},
    		},
    		// matching fields
    		[]fields.Set{
    			{"metadata.name": "foo"},
    			{"name": "foo"},
    		},
    		// not matching fields
    		[]fields.Set{
    			{"metadata.name": "bar"},
    		},
    	)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. cmd/batch-expire_test.go

    	expireYaml := `
    expire: # Expire objects that match a condition
      apiVersion: v1
      bucket: mybucket # Bucket where this batch job will expire matching objects from
      prefix: myprefix # (Optional) Prefix under which this job will expire objects matching the rules below.
      rules:
        - type: object  # regular objects with zero or more older versions
          name: NAME # match object names that satisfy the wildcard expression.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/debug/debug_options.proto

      optional bool enable_timing = 4 [default = false];
    
      // Prints MLIR before specified passes. Supports regular expressions for
      // matching against the names of the desired passes.
      optional string print_ir_before = 5 [default = ""];
    
      // Prints MLIR after specified passes. Supports regular expressions for
      // matching against the names of the desired passes. Currently only prints
      // after a pass if the MLIR is mutated.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 02:44:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. releasenotes/notes/49537.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 49537
    releaseNotes:
      - |
        **Fixed** an issue that when using `withoutHeaders` to configure route matching rules in VirtualService,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:10:16 UTC 2024
    - 329 bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/util/NameMatcher.java

        }
    
        /**
         * Locates the best match for a camel case pattern in a key set of a map and returns the corresponding value.
         *
         * @return The matching item if exactly 1 match found, null if no matches or multiple matches.
         * @see #find(String, Collection)
         */
        public <T> T find(String pattern, Map<String, ? extends T> items) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:48:18 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. releasenotes/notes/jwt-aud.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: security
    issue:
      - 49913
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 18:02:42 UTC 2024
    - 159 bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/BuildLifecycleAwareVirtualFileSystem.java

    import java.io.File;
    
    /**
     * Controls the lifecycle and bookkeeping for file system watching.
     */
    @ServiceScope(Scope.UserHome.class)
    public interface BuildLifecycleAwareVirtualFileSystem extends VirtualFileSystem {
    
        /**
         * Called when the build is started.
         *
         * @return whether watching the file system is currently enabled. This requires that the feature
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. src/internal/trace/testtrace/expectation.go

    	}
    	if e.failure && err == nil {
    		return fmt.Errorf("expected error while reading the trace: want something matching %q, got none", e.errorMatcher)
    	}
    	if e.failure && err != nil && !e.errorMatcher.MatchString(err.Error()) {
    		return fmt.Errorf("unexpected error while reading the trace: want something matching %q, got %s", e.errorMatcher, err.Error())
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top