Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 116 for ctlname (0.14 sec)

  1. internal/bucket/object/lock/lock.go

    		lockLogIf(context.Background(), err)
    		// Retain
    		return true
    	}
    	return created.Add(r.Validity).After(t)
    }
    
    // DefaultRetention - default retention configuration.
    type DefaultRetention struct {
    	XMLName xml.Name `xml:"DefaultRetention"`
    	Mode    RetMode  `xml:"Mode"`
    	Days    *uint64  `xml:"Days"`
    	Years   *uint64  `xml:"Years"`
    }
    
    // Maximum support retention days and years supported by AWS S3.
    const (
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/tls/OkHostnameVerifier.kt

          for (subjectAltName in subjectAltNames) {
            if (subjectAltName == null || subjectAltName.size < 2) continue
            if (subjectAltName[0] != type) continue
            val altName = subjectAltName[1] ?: continue
            result.add(altName as String)
          }
          return result
        } catch (_: CertificateParsingException) {
          return emptyList()
        }
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/pledge_openbsd.go

    	if err != nil {
    		return err
    	}
    
    	return pledge(nil, exptr)
    }
    
    // majmin returns major and minor version number for an OpenBSD system.
    func majmin() (major int, minor int, err error) {
    	var v Utsname
    	err = Uname(&v)
    	if err != nil {
    		return
    	}
    
    	major, err = strconv.Atoi(string(v.Release[0]))
    	if err != nil {
    		err = errors.New("cannot parse major version number returned by uname")
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm-infrastructure/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorData.groovy

    public class ATestClass {
        @Test
        public void ok() {
        }
    }
    
    public class BTestClass {
        @Test
        public void ok() {
        }
    
        @Test
        public void coolName() {
        }
    }
    
    public class ATestClassWithIgnoredMethod {
        @Test
        @Ignore
        public void ignored() {
        }
    }
    
    public class ATestClassWithFailedTestAssumption {
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/assign.go

    	clrname := "memclrNoHeapPointers"
    	hasPointers := elemtype.HasPointers()
    	if hasPointers {
    		clrname = "memclrHasPointers"
    		ir.CurFunc.SetWBPos(n.Pos())
    	}
    
    	var clr ir.Nodes
    	clrfn := mkcall(clrname, nil, &clr, hp, hn)
    	clr.Append(clrfn)
    	if hasPointers {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/files/gateway-injection-template.yaml

        volumeMounts:
        - name: workload-socket
          mountPath: /var/run/secrets/workload-spiffe-uds
        - name: credential-socket
          mountPath: /var/run/secrets/credential-uds
        {{- if eq .Values.global.caName "GkeWorkloadCertificate" }}
        - name: gke-workload-certificate
          mountPath: /var/run/secrets/workload-spiffe-credentials
          readOnly: true
        {{- else }}
        - name: workload-certs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. okhttp-tls/src/main/kotlin/okhttp3/tls/HeldCertificate.kt

         * a literal IP address, or a hostname pattern. If no subject alternative names are added that
         * extension will be omitted.
         */
        fun addSubjectAlternativeName(altName: String) =
          apply {
            altNames += altName
          }
    
        /**
         * Set this certificate's common name (CN). Historically this held the hostname of TLS
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

          if cst_ty == TFRTypes.ATTR:
            self._emit_with_loc(
                '\n{} = tfr.constant "{}" -> {}'.format(cst_name, cst_val, cst_ty),
                node)
          else:
            self._emit_with_loc(
                '\n{} = arith.constant {} : {}'.format(cst_name, cst_val, cst_ty),
                node)
        return cst_name, cst_ty
    
      def visit_FunctionDef(self, node):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  9. src/syscall/ztypes_aix_ppc64.go

    )
    
    type IfMsgHdr struct {
    	Msglen    uint16
    	Version   uint8
    	Type      uint8
    	Addrs     int32
    	Flags     int32
    	Index     uint16
    	Addrlen   uint8
    	Pad_cgo_0 [1]byte
    }
    
    type Utsname struct {
    	Sysname  [32]uint8
    	Nodename [32]uint8
    	Release  [32]uint8
    	Version  [32]uint8
    	Machine  [32]uint8
    }
    
    const (
    	_AT_FDCWD            = -0x2
    	_AT_REMOVEDIR        = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 14:36:41 UTC 2019
    - 4.2K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/phases/init/certs.go

    	// certificate that is preceded by the CAs that sign them.
    	var lastCACert *certsphase.KubeadmCert
    	for _, cert := range certsphase.GetDefaultCertList() {
    		var phase workflow.Phase
    		if cert.CAName == "" {
    			phase = newCertSubPhase(cert, runCAPhase(cert))
    			lastCACert = cert
    		} else {
    			phase = newCertSubPhase(cert, runCertPhase(cert, lastCACert))
    		}
    		subPhases = append(subPhases, phase)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 06:35:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top