Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 855 for SELF (0.03 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto

      // are accessible via `self[mapKey]`, map containment can be checked via `mapKey in self` and all entries of the map
      // are accessible via CEL macros and functions such as `self.all(...)`.
      // If the Rule is scoped to an array, the elements of the array are accessible via `self[i]` and also by macros and
      // functions.
      // If the Rule is scoped to a scalar, `self` is bound to the scalar value.
      // Examples:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  2. pkg/test/cert/ca/root.go

    subjectKeyIdentifier = hash
    basicConstraints = critical, CA:true
    keyUsage = critical, digitalSignature, nonRepudiation, keyEncipherment, keyCertSign
    [ req_dn ]
    O = Istio
    CN = Root CA`
    
    // Root contains the cryptographic files for a self-signed root CA.
    type Root struct {
    	// KeyFile is the path to the file containing the private key for the CA.
    	KeyFile string
    
    	// ConfFile is the path to the file containing the extensions configuration file.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 03 18:09:59 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  3. tensorflow/cc/experimental/libtf/tests/tensor_test.cc

        ASSERT_FALSE(x->RefCountIsOne());
      }
      ASSERT_TRUE(x->RefCountIsOne());
    }
    
    TaggedValue MakeScalarTensor(TaggedValue self, TaggedValue val) {
      if (val.type() != TaggedValue::FLOAT32) return TaggedValue::None();
      if (self.type() != TaggedValue::DICT) return TaggedValue::None();
      TaggedValue ctx_capsule = (self.dict())[TaggedValue("context")];
      AbstractContext* ctx = static_cast<AbstractContext*>(ctx_capsule.capsule());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 21:44:52 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. okhttp-testing-support/src/main/kotlin/okhttp3/internal/concurrent/TaskFaker.kt

              if (nanos == 0L) return
    
              // Yield until notified, interrupted, or the duration elapses.
              val waitUntil = nanoTime + nanos
              val self = currentTask
              waitingCoordinatorTask = self
              waitingCoordinatorNotified = false
              waitingCoordinatorInterrupted = false
              yieldUntil {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  5. tests/testdata/certs/README.md

    # Self-signed certificates
    
        openssl genrsa -out cert.key 2048
        openssl req -new -x509 -sha256 -key cert.key -out cert.crt -days 3650
    
    For the common name, please type the following FQDN:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 02 23:54:48 UTC 2018
    - 215 bytes
    - Viewed (0)
  6. security/pkg/pki/ca/selfsignedcarootcertrotator.go

    	"istio.io/istio/pkg/log"
    	"istio.io/istio/security/pkg/k8s/controller"
    	"istio.io/istio/security/pkg/pki/util"
    	certutil "istio.io/istio/security/pkg/util"
    )
    
    var rootCertRotatorLog = log.RegisterScope("rootcertrotator", "Self-signed CA root cert rotator log")
    
    type SelfSignedCARootCertRotatorConfig struct {
    	certInspector      certutil.CertUtil
    	caStorageNamespace string
    	org                string
    	rootCertFile       string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  7. tensorflow/cc/saved_model/python/loader.clif

    from "third_party/tensorflow/cc/saved_model/loader.h":
      namespace `tensorflow`:
        class SavedModelBundle:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 04 22:06:37 UTC 2018
    - 134 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/kotlinDsl/interoperability-static-extensions/kotlin/buildSrc/src/main/groovy/myGroovy/TheTargetTypeGroovyExtension.groovy

    package myGroovy
    
    class TheTargetType {}
    
    class TheTargetTypeGroovyExtension {
        static void groovyExtensionMethod(TheTargetType self, String s, int i, Object o) {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 169 bytes
    - Viewed (0)
  9. maven-model-builder/src/test/resources/poms/inheritance/plugin-configuration-expected.xml

            <groupId>inheritance.configuration</groupId>
            <artifactId>default</artifactId>
            <version>3.0</version>
            <configuration>
              <defaults><!-- equivalent to combine.children="merge" combine.self="merge" -->
                <!-- merge the content of the configuration element according to element name -->
                <parent>child</parent>
                <child>child</child>
                <parent-only>parent</parent-only>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  10. test/fixedbugs/issue10607a.go

    package main
    
    import (
    	"bytes"
    	"debug/elf"
    	"fmt"
    	"os"
    )
    
    func main() {
    	f, err := elf.Open("/proc/self/exe")
    	if err != nil {
    		if os.IsNotExist(err) {
    			return
    		}
    		fmt.Fprintln(os.Stderr, "opening /proc/self/exe:", err)
    		os.Exit(1)
    	}
    
    	c := 0
    	fail := false
    	for i, s := range f.Sections {
    		if s.Type != elf.SHT_NOTE {
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 07 14:00:27 UTC 2017
    - 1.6K bytes
    - Viewed (0)
Back to top