Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 428 for Usages (0.17 sec)

  1. pkg/volume/csi/csi_client.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: Tue Sep 20 10:15:36 UTC 2022
    - 22.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/DeprecatedUsageBuildOperationProgressIntegrationTest.groovy

                fqid == 'deprecation:included-build-task'
                contextualLabel == 'Included build task has been deprecated.'
            }
        }
    
        def "collects stack traces for deprecation usages at certain limit, regardless of whether the deprecation has been encountered before for warning mode #mode"() {
            file('settings.gradle') << "rootProject.name = 'root'"
    
            51.times {
                buildFile """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/cluster_tf_ops_pass.cc

        // is name collision.
        metadata.partition_name = func_op.getName();
      }
    }
    
    // Creates a tf_device.remote_run call for every remote function. And replaces
    // usages of the results of the original operations with the results of the
    // tf_device.remote_run calls.
    void CreateRemoteRunCalls(MLIRContext *context,
                              const llvm::StringMap<FunctionMetadata> &metadatas) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/services/internal/DefaultBuildServicesRegistryTest.groovy

            when:
            provider.get()
    
            then:
            def e2 = thrown(RuntimeException)
            e2.is(e)
            BrokenServiceImpl.attempts == 1
        }
    
        def "service has no max parallel usages by default"() {
            expect:
            registerService("service", ServiceImpl) {
                assert !it.maxParallelUsages.present
            }
            def registration = registry.registrations.getByName("service")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/eventbus/EventBus.java

     * href="https://lorentzos.com/rxjava-as-event-bus-the-right-way-10a36bdd49ba">2</a>.) Some usages
     * of EventBus may be better written using <a
     * href="https://kotlinlang.org/docs/coroutines-guide.html">Kotlin coroutines</a>, including <a
     * href="https://kotlinlang.org/docs/flow.html">Flow</a> and <a
     * href="https://kotlinlang.org/docs/channels.html">Channels</a>. Yet other usages are better served
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 17 16:01:41 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_program_key.cc

        }
      }
    
      // Create the new launch op after TPUCompileOp with the preprocessing ops.
      tf_device::LaunchOp moved_launch_op =
          CreateLaunchForBlock(builder, before_op, launch_block, device);
    
      // Replace usages of the original launch op with the new launch op for
      // operations that were moved.
      for (OpOperand& operand :
           moved_launch_op.GetBody().getTerminator()->getOpOperands()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/test/groovy/org/gradle/language/plugins/NativeBasePluginTest.groovy

            variant1.artifacts >> [artifact1]
            def publishableVariant1 = Stub(PublishableVariant)
            publishableVariant1.name >> "debug"
            publishableVariant1.usages >> [variant1]
            publishableVariant1.getCoordinates() >> new DefaultModuleVersionIdentifier("my.group", "test_app_debug", "1.2")
    
            def artifact2 = Stub(PublishArtifact)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top