Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 264 for corerest (0.18 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    Again, this is information that cannot be expressed in pom metadata.
    We can now select a `guice-no_aop` variant and will get the correct jar file *and* the correct dependencies.
    
    .Applying and utilising rule for Guice metadata
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  2. pkg/registry/core/service/ipallocator/controller/repairip.go

    		return err
    	}
    	// The service exists, we have checked in previous loop that all Service to IPAddress are correct
    	// but we also have to check the reverse, that the IPAddress to Service relation is correct
    	for _, clusterIP := range svc.Spec.ClusterIPs {
    		if ipAddress.Name == clusterIP {
    			return nil
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. src/crypto/rsa/pkcs1v15.go

    // attacker to brute-force it. If they can do that then they can learn whether a
    // random value was used (because it'll be different for the same ciphertext)
    // and thus whether the padding was correct. This also defeats the point of this
    // function. Using at least a 16-byte key will protect against this attack.
    //
    // This method implements protections against Bleichenbacher chosen ciphertext
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:21 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. src/internal/trace/oldtrace.go

    // be reordered. Some events, such as GoWaiting need to look ahead for follow-up
    // events to determine the correct translation. GoSyscall, which is an
    // instantaneous event, gets turned into a 1 ns long pair of
    // GoSyscallStart+GoSyscallEnd, unless we observe a GoSysBlock, in which case we
    // emit a GoSyscallStart+GoSyscallEndBlocked pair with the correct duration
    // (i.e. starting at the original GoSyscall).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/daemon/DaemonGroovyCompiler.java

             * depending on whether you use process isolation or classpath isolation. In the former case, the return
             * value is serialized and deserialized, so the correct class is returned. In the latter case, the result
             * is returned directly, which means it is not an instance of the expected class unless we allow that class
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/p256_asm.go

    	t2[3], b = bits.Sub64(t1[3], p256P[3], b)
    	// Three options:
    	//   - a+b < p
    	//     then c is 0, b is 1, and t1 is correct
    	//   - p <= a+b < 2^256
    	//     then c is 0, b is 0, and t2 is correct
    	//   - 2^256 <= a+b
    	//     then c is 1, b is 1, and t2 is correct
    	t2Mask := (c ^ b) - 1
    	res[0] = (t1[0] & ^t2Mask) | (t2[0] & t2Mask)
    	res[1] = (t1[1] & ^t2Mask) | (t2[1] & t2Mask)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/StartParameterResolutionOverride.java

                return new FailureVerificationOverride(e);
            }
        }
    
        private File computeReportDirectory(BuildCommencedTimeProvider timeProvider) {
            // TODO: This is not quite correct: we're using the "root project" build directory
            // but technically speaking, this can be changed _after_ this service is created.
            // There's currently no good way to figure that out.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/quantize_preprocess.cc

      pm.addPass(mlir::odml::CreateRenameEntrypointToMainPass());
      // TODO: b/230572023 - Consider improving shape inference for While op instead
      // of dropping the attribute. This need not be correct for models not trained
      // on TPU.
      // Extracts the StableHLO module from tf.XlaCallModuleOp if the StableHLO
      // module is serialized in it.
      pm.addPass(mlir::odml::CreateLegalizeTFXlaCallModuleToStablehloPass());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/BUILD

        deps = [
            ":legalize_tf",
            ":test_utils",
            "//tensorflow/compiler/mlir/tensorflow",
            "//tensorflow/compiler/mlir/tensorflow:serialize_mlir_module_utils",
            "//tensorflow/core:test",
            "//tensorflow/core/lib/monitoring:cell_reader",
            "@com_google_absl//absl/strings",
            "@com_google_googletest//:gtest_main",
            "@llvm-project//llvm:Support",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  10. tensorflow/cc/framework/gradient_checker.cc

        feed_list.insert({xs[i], x_datas[i]});
      }
      for (int i = 0; i < y_num; i++) {
        feed_list.insert({dys[i], dy_datas[i]});
      }
    
      // x_stride and y_stride are used to calculate the correct jacobian row and
      // column position for a pair of elements at positions r, c within the x and y
      // tensors respectively.
      const int x_stride = JacobianStride<X_T>::value;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top