Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for Metral (0.26 sec)

  1. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinGlobalModificationService.kt

    import org.jetbrains.annotations.TestOnly
    import org.jetbrains.kotlin.analysis.api.platform.KotlinPlatformComponent
    import org.jetbrains.kotlin.analysis.project.structure.KtModule
    
    /**
     * [KotlinGlobalModificationService] is a central service for the invalidation of caches during/between tests.
     *
     * All `publish` functions must be called in a write action because the events in [KotlinModificationTopics] guarantee that the listener is called in a
     * write action.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/AbstractInitIntegrationSpec.groovy

            if (scriptText.contains("repositories")) {
                assertThat(scriptText, containsString("mavenCentral()"))
                assertThat(scriptText, containsString("Use Maven Central for resolving dependencies."))
                assertThat(scriptText, not(containsString("jcenter()")))
                assertThat(scriptText, not(containsString("Use JCenter for resolving dependencies.")))
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:17:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. maven-api-impl/src/test/java/org/apache/maven/internal/impl/standalone/ApiRunner.java

            DefaultSession session = new DefaultSession(
                    rsession,
                    system,
                    List.of(lookup.lookup(RepositoryFactory.class)
                            .createRemote("central", "https://repo.maven.apache.org/maven2")),
                    null,
                    lookup);
    
            Settings settings = session.getService(SettingsBuilder.class)
                    .build(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractSmokeTest.groovy

            static errorProne = "3.1.0"
    
            // https://plugins.gradle.org/plugin/com.google.protobuf
            static protobufPlugin = "0.9.4"
    
            // https://central.sonatype.com/artifact/com.google.protobuf/protobuf-java/versions
            static protobufTools = "4.26.1"
    
            // https://plugins.gradle.org/plugin/org.gradle.test-retry
            static testRetryPlugin = "1.5.8"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 08:14:32 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. pilot/pkg/networking/util/util.go

    	srcX, err := src.UnmarshalNew()
    	if err != nil {
    		return nil, err
    	}
    
    	// Merge the two typed protos
    	merge.Merge(dstX, srcX)
    
    	// Convert the merged proto back to dst
    	retVal := protoconv.MessageToAny(dstX)
    
    	return retVal, nil
    }
    
    // AppendLbEndpointMetadata adds metadata values to a lb endpoint using the passed in metadata as base.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  6. pkg/security/security.go

    	// Normally initialized from ISTIO_META_CLUSTER_ID - after a tortuous journey it
    	// makes its way into the ClusterID metadata of Citadel gRPC request to create the cert.
    	// Didn't find much doc - but I suspect used for 'central cluster' use cases - so should
    	// match the cluster name set in the MC setup.
    	ClusterID string
    
    	// The type of Elliptical Signature algorithm to use
    	// when generating private keys. Currently only ECDSA is supported.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      OpBuilder builder(op);
      builder.setInsertionPointAfter(op);
      for (auto retval :
           llvm::enumerate(func.front().getTerminator()->getOperands())) {
        if (propagate_caller_callee_constants_) {
          auto retval_op = retval.value().getDefiningOp();
          if (isa_and_nonnull<TF::ConstOp>(retval_op)) {
            op->getResult(retval.index())
                .replaceAllUsesWith(builder.clone(*retval_op)->getResult(0));
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        output = input / (bias + alpha * sqr_sum) ** beta
    
    For details, see [Krizhevsky et al., ImageNet classification with deep
    convolutional neural networks (NIPS 2012)](http://papers.nips.cc/paper/4824-imagenet-classification-with-deep-convolutional-neural-networks).
      }];
    
      let arguments = (ins
          TFL_FpTensor:$input,
          I32Attr:$radius,
          F32Attr:$bias,
          F32Attr:$alpha,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

     *   <li>These tests are "conformance tests", and do not attempt to test throughput, latency,
     *       scalability or other performance factors (see the separate "jtreg" tests for a set intended
     *       to check these for the most central aspects of functionality.) So, most tests use the
     *       smallest sensible numbers of threads, collection sizes, etc needed to check basic
     *       conformance.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  10. src/math/big/float.go

    	// x != 0
    	z.mant = z.mant.set(x.abs)
    	fnorm(z.mant)
    	z.setExpAndRound(int64(bits), 0)
    	return z
    }
    
    // SetRat sets z to the (possibly rounded) value of x and returns z.
    // If z's precision is 0, it is changed to the largest of a.BitLen(),
    // b.BitLen(), or 64; with x = a/b.
    func (z *Float) SetRat(x *Rat) *Float {
    	if x.IsInt() {
    		return z.SetInt(x.Num())
    	}
    	var a, b Float
    	a.SetInt(x.Num())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
Back to top