Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 452 for Usages (0.22 sec)

  1. cluster/common.sh

                "server": {
                    "expiry": "43800h",
                    "usages": [
                        "signing",
                        "key encipherment",
                        "server auth",
                        "client auth"
                    ]
                },
                "client": {
                    "expiry": "43800h",
                    "usages": [
                        "signing",
                        "key encipherment",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 17 15:36:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  2. security/pkg/k8s/chiron/utils_test.go

    			}
    			client.PrependReactor("get", "certificatesigningrequests", defaultReactionFunc(csr))
    
    			usages := []cert.KeyUsage{
    				cert.UsageDigitalSignature,
    				cert.UsageKeyEncipherment,
    				cert.UsageServerAuth,
    				cert.UsageClientAuth,
    			}
    			r, err := submitCSR(client, []byte("test-pem"), "test-signer",
    				usages, DefaulCertTTL)
    			if tc.expectFail {
    				assert.Error(t, err)
    			} else if err != nil || r == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 03:58:11 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. android/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: Wed Aug 25 16:37:57 UTC 2021
    - 12.8K bytes
    - Viewed (0)
Back to top