Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for Vasiliy (0.1 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    However, because all artifacts are verified, such artifacts would in general easily be discovered by you, because they would cause a checksum verification failure (checksums would be _missing_ from verification metadata).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    They involve handling source files, managing file dependencies, and generating reports.
    Gradle provides a robust API that simplifies these operations, enabling developers to perform necessary file tasks easily.
    
    [[sec:hard_coded_file_paths]]
    == Hardcoded paths and laziness
    
    It is best practice to *avoid* hardcoded paths in build scripts.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/MapsTest.java

        SortedMap<String, Double> transformed = transformValues(map, SQRT_FUNCTION);
    
        /*
         * We'd like to sanity check that we didn't get a NavigableMap out, but we
         * can't easily do so while maintaining GWT compatibility.
         */
        assertEquals(ImmutableSortedMap.of("a", 2.0, "b", 3.0), transformed);
      }
    
      @GwtIncompatible // NavigableMap
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  4. src/runtime/mgcpacer.go

    	//
    	// Initialized from GOMEMLIMIT. GOMEMLIMIT=off is equivalent to MaxInt64
    	// which means no soft memory limit in practice.
    	//
    	// This is an int64 instead of a uint64 to more easily maintain parity with
    	// the SetMemoryLimit API, which sets a maximum at MaxInt64. This value
    	// should never be negative.
    	memoryLimit atomic.Int64
    
    	// heapMinimum is the minimum heap size at which to trigger GC.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    	// For native resources, we can easily figure out these tags since we know the fields.
    
    	// Because custom resources are decoded as Unstructured and because we're missing the metadata about how to handle
    	// each field in a strategic merge patch, we can't find the go struct tags. Hence, we can't easily  do a strategic merge
    	// for custom resources. So we should fail fast and return an error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

         * are never inherited.
         *
         * Rationale: if we make configuration inherit attributes, then it means that 2 "child" configurations
         * could easily have the same set of attributes. It also means that just adding a configuration could
         * make resolution fail if we decide that 2 configurations with the same attributes lead to an error.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  7. tensorflow/c/c_api_function_test.cc

            TF_NewWhile(func_graph_, &inputs[0], inputs.size(), s_)));
        ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
        params->name = "test_loop";
    
        // Initialize outputs so we can easily detect errors/bugs
        outputs.resize(2, {nullptr, -1});
    
        // Create loop: while (input1 < input2) input1 += input2 + 1
        TF_Operation* less_than = LessThan(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  8. src/html/template/escape_test.go

    		},
    		{
    			"bad dynamic element name",
    			// Dynamic element names are typically used to switch
    			// between (thead, tfoot, tbody), (ul, ol), (th, td),
    			// and other replaceable sets.
    			// We do not currently easily support (ul, ol).
    			// If we do change to support that, this test should
    			// catch failures to filter out special tag names which
    			// would violate the structure preservation property --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener.go

    			svcExtraListenAddresses := listenerOpts.service.GetExtraAddressesForProxy(listenerOpts.proxy)
    			// Override the svcListenAddress, using the proxy ipFamily, for cases where the ipFamily cannot be detected easily.
    			// For example: due to the possibility of using hostnames instead of ips in ServiceEntry,
    			// it is hard to detect ipFamily for such services.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

      // variant tensors are not from tf-dialect tensorlist ops. Rather than change
      // the dynamic legalization predicates
      // (`is_legal` in `runOnOperation`) it is equivalent and more easily
      // implemented to simply skip applying this pass if there are no tensorlist
      // operations.
      if (!ModuleContainsTensorListOp(module)) return;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
Back to top