Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 452 for Usages (0.1 sec)

  1. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/publication/DefaultMavenPublicationTest.groovy

            publishArtifactDependencies.getDependencies(task) >> [task]
    
            then:
            publication.publishableArtifacts.files.buildDependencies.getDependencies(task).contains(task)
        }
    
        def "multiple usages of a component can provide the same artifact"() {
            given:
            def publication = createPublication()
            def artifact1 = Mock(PublishArtifact)
            artifact1.file >> artifactFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:33:41 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_client_test.go

    	}
    
    	for _, usage := range usages {
    		if usage == nil {
    			continue
    		}
    		unit := usage.GetUnit()
    		switch unit {
    		case csipbv1.VolumeUsage_BYTES:
    			metrics.Available = resource.NewQuantity(usage.GetAvailable(), resource.BinarySI)
    			metrics.Capacity = resource.NewQuantity(usage.GetTotal(), resource.BinarySI)
    			metrics.Used = resource.NewQuantity(usage.GetUsed(), resource.BinarySI)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  3. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/api/standalone/StandaloneAnalysisAPISessionBuilder.kt

            }
        }
    }
    
    /**
     * Registers services which are not covered by [FirStandaloneServiceRegistrar]. In general, this concerns services which need to be
     * registered for production Standalone and Standalone test usages, but *not* for IDE mode Analysis API tests, which rely on
     * [FirStandaloneServiceRegistrar] as a basis.
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.td

      let summary = "Removes `stablehlo.custom_call @Sharding`";
      let description = [{
        Finds `stablehlo.custom_call @Sharding` and removes all instances of them,
        replacing the usages by its operand. This is used where sharding doesn't
        make much sense or sharding custom calls are incompatible, e.g. on-device
        targets.
      }];
      let dependentDialects = ["mlir::stablehlo::StablehloDialect"];
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishMultiProjectIntegTest.groovy

            }
        }
    }
    """
            if (mapping) {
                extra = """
    project(":project1") {
        publishing {
            publications.maven {
                versionMapping {
                    usage(Usage.JAVA_API) {
                        fromResolutionResult()
                    }
                }
            }
        }
    }
    """ + extra
            }
            createBuildScripts(extra)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/model/CalculatedValueContainer.java

        //  We cannot use this syntax until adopting JSpecify with e.g. Jetbrains Annotations, because IDEA wrongly treats all usages as having a nullable type, even when
        //  it is explicitly spelled.
    
        private final DisplayName displayName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/math/QuantilesTest.java

       * 2. Tests on hardcoded datasets include non-finite values for chains starting with scale(10);
       * 3. Tests on a mechanically generated dataset for chains starting with percentiles();
       * 4. Tests of illegal usages of the API.
       */
    
      /*
       * Covering every combination would lead to an explosion in the number of tests. So we cover only:
       * - median with compute taking a double-collection and with computeInPlace;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 29.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/functional/src/main/java/org/gradle/internal/Try.java

        //  We cannot use this syntax until adopting JSpecify with e.g. Jetbrains Annotations, because IDEA wrongly treats all Try usages as having a nullable type, even when
        //  it is explicitly spelled, e.g.
        //  Try<String> t = Try.successful("some")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/merge_control_flow.cc

      new_if_op.getThenBranch().push_back(new Block);
      new_if_op.getElseBranch().push_back(new Block);
    
      // Replace internal usages of merged if ops.
      ReplaceInternalUsage(if_op_segment);
    
      // Replace external usages of merged if ops.
      ReplaceExternalUsage(if_op_segment, new_if_op, return_indices);
    
      // Move ops after the new merged If region.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 07:31:01 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

    ```
    
    To make old plugins compatible we need to replace all the usages of old JavaCompile with the new one.
    
    Let’s say it’s used in a plugin as:
    
    ```java
    public void applyPlugin(Project project) {
         project.tasks.named("compileJava", JavaCompile.class, task -> {
             task.setSourceCompatibility("1.8");
         });
    }
    ```
    
    We will then replace all such usages with interception code:
    ```java
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
Back to top