Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 200 for pats (0.13 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

                STACKTRACE_MESSAGE,
                INFO_DEBUG,
                SCAN,
                GET_HELP
            )
        }
    
        void "strict conflict resolution should pass when no conflicts"() {
            mavenRepo.module("org", "foo", '1.3.3').publish()
    
            createDirs("api", "impl", "tool")
            settingsFile << "include 'api', 'impl', 'tool'"
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier.go

    	// and Port names directly in nftables chain names (though note that this assumes
    	// that the chain name won't *start* with any of those strings, since that might
    	// be illegal). We use "/" to separate the parts of the name, which is one of the
    	// two characters allowed in a chain name that isn't allowed in our input strings.
    
    	name := fmt.Sprintf("%s/%s/%s/%s",
    		servicePortName.NamespacedName.Namespace,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loader/loader.go

    	align []uint8 // symbol 2^N alignment, indexed by global index
    
    	deferReturnTramp map[Sym]bool // whether the symbol is a trampoline of a deferreturn call
    
    	objByPkg map[string]uint32 // map package path to the index of its Go object reader
    
    	anonVersion int // most recently assigned ext static sym pseudo-version
    
    	// Bitmaps and other side structures used to store data used to store
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    +
    For the input tracking to ignore these file system checks on the specific paths, the Gradle property `org.gradle.configuration-cache.inputs.unsafe.ignore.file-system-checks`, with the list of the paths, relative to the root project directory and separated by `;`, can be used.
    To ignore multiple paths, use `*` to match arbitrary strings within one segment, or `pass:[**]` across segments.
    Paths starting with `~/` are based on the user home directory.
    For example:
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    // TODO(fengliuai): move this to the sanity check of pre-quantize pass.
    def eliminate_dq_q_pairs : Pat<
      (TFL_QuantizeOp (TFL_DequantizeOp $in), $qt),
      (replaceWithValue $in),
      [(NotFromQuantOpOrSameQuantType $in, $qt)]>;
    
    // Matching HardSwish
    def MatchHardSwishPattern1 : Pat<
      (TFL_MulOp
        (TFL_MulOp
         $x, (TFL_AddOp
              $x,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    	result := []*unstructured.Unstructured{}
    	err := filepath.WalkDir(dir, func(path string, d fs.DirEntry, err error) error {
    		if err != nil {
    			return err
    		} else if d.IsDir() {
    			return nil
    		} else if filepath.Ext(d.Name()) != ".yaml" {
    			return nil
    		}
    		// Read the file in as []byte
    		data, err := os.ReadFile(path)
    		if err != nil {
    			return err
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

     public:
      // Creates an empty TestResult.
      TestResult();
    
      // D'tor.  Do not inherit from TestResult.
      ~TestResult();
    
      // Gets the number of all test parts.  This is the sum of the number
      // of successful test parts and the number of failed test parts.
      int total_part_count() const;
    
      // Returns the number of the test properties.
      int test_property_count() const;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  8. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    			delete(nc.zoneStates, k)
    			continue
    		}
    		if v != stateFullDisruption {
    			allWasFullyDisrupted = false
    			break
    		}
    	}
    
    	// At least one node was responding in previous pass or in the current pass. Semantics is as follows:
    	// - if the new state is "partialDisruption" we call a user defined function that returns a new limiter to use,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/Futures.java

        TrustedListenableFutureTask<O> task = TrustedListenableFutureTask.create(callable);
        Future<?> scheduled = executorService.schedule(task, delay, timeUnit);
        /*
         * Even when the user interrupts the task, we pass `false` to `cancel` so that we don't
         * interrupt a second time after the interruption performed by TrustedListenableFutureTask.
         */
        task.addListener(() -> scheduled.cancel(false), directExecutor());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. pkg/kubelet/pod_workers.go

    	// PodTerminationGracePeriodSecondsOverride is optional override to use if a pod is being killed as part of kill operation.
    	PodTerminationGracePeriodSecondsOverride *int64
    }
    
    // UpdatePodOptions is an options struct to pass to a UpdatePod operation.
    type UpdatePodOptions struct {
    	// The type of update (create, update, sync, kill).
    	UpdateType kubetypes.SyncPodType
    	// StartTime is an optional timestamp for when this update was created. If set,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
Back to top