Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 245 for admitted (0.33 sec)

  1. src/cmd/vendor/rsc.io/markdown/inline.go

    	for _, c := range x.Inner {
    		c.PrintText(buf)
    	}
    }
    
    func (p *parseState) emit(i int) {
    	if p.emitted < i {
    		p.list = append(p.list, &Plain{p.s[p.emitted:i]})
    		p.emitted = i
    	}
    }
    
    func (p *parseState) skip(i int) {
    	p.emitted = i
    }
    
    func (p *parseState) inline(s string) []Inline {
    	s = trimSpaceTab(s)
    	// Scan text looking for inlines.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. okhttp-logging-interceptor/src/main/kotlin/okhttp3/logging/HttpLoggingInterceptor.kt

              logger.log("--> END ${request.method} (encoded body omitted)")
            } else if (requestBody.isDuplex()) {
              logger.log("--> END ${request.method} (duplex request body omitted)")
            } else if (requestBody.isOneShot()) {
              logger.log("--> END ${request.method} (one-shot body omitted)")
            } else {
              var buffer = Buffer()
              requestBody.writeTo(buffer)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 09:14:38 UTC 2024
    - 11.2K bytes
    - Viewed (1)
  3. pkg/apis/certificates/validation/validation.go

    			continue
    		}
    
    		if !cert.IsCA {
    			allErrors = append(allErrors, field.Invalid(path, "<value omitted>", fmt.Sprintf("entry %d does not have the CA bit set", i)))
    			continue
    		}
    
    		if !cert.BasicConstraintsValid {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/initorder.go

    		// introduce a node for each lhs variable (here: a, b);
    		// but they all have the same initializer - emit only
    		// one, for the first variable seen
    		if emitted[info] {
    			continue // initializer already emitted, if any
    		}
    		emitted[info] = true
    
    		infoLhs := info.lhs // possibly nil (see declInfo.lhs field comment)
    		if infoLhs == nil {
    			infoLhs = []*Var{v}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. src/go/types/initorder.go

    		// introduce a node for each lhs variable (here: a, b);
    		// but they all have the same initializer - emit only
    		// one, for the first variable seen
    		if emitted[info] {
    			continue // initializer already emitted, if any
    		}
    		emitted[info] = true
    
    		infoLhs := info.lhs // possibly nil (see declInfo.lhs field comment)
    		if infoLhs == nil {
    			infoLhs = []*Var{v}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile.go

    // converts the native type definition to apiservercel.DeclType once such a utility becomes available.
    // The 'uid' field is omitted since it is not needed for in-process admission review.
    // The 'object' and 'oldObject' fields are omitted since they are exposed as root level CEL variables.
    func BuildRequestType() *apiservercel.DeclType {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  7. docs/features/https.md

           */
          private fun trustedCertificatesInputStream(): InputStream {
            ... // Full source omitted. See sample.
          }
    
          private fun trustManagerForCertificates(inputStream: InputStream): X509TrustManager {
            ... // Full source omitted. See sample.
          }
        ```
    === ":material-language-java: Java"
        ```java
          private final OkHttpClient client;
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 24 00:16:30 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    // corresponding increase or decrease in Mantissa) such that:
    //
    // - No precision is lost
    // - No fractional digits will be emitted
    // - The exponent (or suffix) is as large as possible.
    //
    // The sign will be omitted unless the number is negative.
    //
    // Examples:
    //
    // - 1.5 will be serialized as "1500m"
    // - 1.5Gi will be serialized as "1536Mi"
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.proto

      // Omitted for non-resource requests.  Only logged at Request Level and higher.
      // +optional
      optional .k8s.io.apimachinery.pkg.runtime.Unknown requestObject = 11;
    
      // API object returned in the response, in JSON. The ResponseObject is recorded after conversion
      // to the external type, and serialized as JSON.  Omitted for non-resource requests.  Only logged
      // at Response Level.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

    }
    
    // Signals quantization type to be per-tensor.
    message PerTensor {}
    
    // Corresponds to StableHLO's `QuantizedTensorElementType`. Type parameters such
    // as `QuantizationParameters` is omitted because they are determined during
    // quantization.
    // See https://github.com/openxla/stablehlo/blob/main/docs/spec.md#types for
    // details.
    //
    // Currently only supports specifying quantization granularity (e.g. for
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top