Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 104 for Fermat (0.22 sec)

  1. pkg/apis/admissionregistration/validation/validation_test.go

    				}},
    				ParamKind: &admissionregistration.ParamKind{
    					APIVersion: "test.example.com/v1",
    				},
    			},
    		},
    		expectedError: `spec.paramKind.kind: Required value`,
    	}, {
    		name: "API version format in ParamKind",
    		config: &admissionregistration.ValidatingAdmissionPolicy{
    			ObjectMeta: metav1.ObjectMeta{
    				Name: "config",
    			},
    			Spec: admissionregistration.ValidatingAdmissionPolicySpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

      @Test
      fun flushAfterStreamTransmittedWithNoLengthHeaders() {
        testFlushAfterStreamTransmitted(TransferKind.END_OF_STREAM)
      }
    
      /**
       * We explicitly permit apps to close the upload stream even after it has been transmitted.  We
       * also permit flush so that buffered streams can do a no-op flush when they are closed.
       * http://b/3038470
       */
      private fun testFlushAfterStreamTransmitted(transferKind: TransferKind) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Layout assignment pass.";
      let constructor = "TF::CreateLayoutAssignmentPass()";
      let options = [
        Option<"force_data_format_", "force-data-format", "std::string", /*default=*/"",
               "Force data format for all layout sensitive ops.">
      ];
    }
    
    def MoveTransposesPass : Pass<"tf-move-transposes", "mlir::func::FuncOp"> {
      let summary = "Move transposes pass.";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/s390x/asmz.go

    // in the Software without restriction, including without limitation the rights
    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    // furnished to do so, subject to the following conditions:
    //
    // The above copyright notice and this permission notice shall be included in
    // all copies or substantial portions of the Software.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        // input activations are asymmetrically quantized.
        OptionalAttr<BoolAttr>:$asymmetric_quantize_inputs
      );
    
      // Depending on the weights format, this op can have one or two outputs.
      let results = (outs
        TFL_VariadicTensorOf<[F32, QI8, QUI8, QI16, QUI16]>:$output
      );
    
      let hasVerifier = 1;
    
      let hasOptions = 1;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Maps.java

        }
    
        @Override
        @CheckForNull
        /*
         * Our checker arguably should produce a nullness error here until we see @NonNull in JDK APIs.
         * But it doesn't, which may be a sign that we still permit parameter contravariance in some
         * cases?
         */
        public V computeIfPresent(
            K key, BiFunction<? super K, ? super @NonNull V, ? extends @Nullable V> remappingFunction) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	/* CryptQueryObject format type flags */
    	CERT_QUERY_FORMAT_BINARY                     = 1
    	CERT_QUERY_FORMAT_BASE64_ENCODED             = 2
    	CERT_QUERY_FORMAT_ASN_ASCII_HEX_ENCODED      = 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  8. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // FearWorks Media Ltd. : https://fearworksmedia.co.uk
    // submitted by Keith Fairley <******@****.***>
    conn.uk
    copro.uk
    hosp.uk
    
    // Fermax : https://fermax.com/
    // submitted by Koen Van Isterdael <k.vanisterdael@fermax.be>
    mydobiss.com
    
    // FH Muenster : https://www.fh-muenster.de
    // Submitted by Robin Naundorf <******@****.***>
    fh-muenster.io
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet.go

    			runningContainers = append(runningContainers, s.ID.String())
    		}
    		if klogVEnabled {
    			containers = append(containers, container{Name: s.Name, State: string(s.State), ExitCode: s.ExitCode, FinishedAt: s.FinishedAt.UTC().Format(time.RFC3339Nano)})
    		}
    	}
    	if klogVEnabled {
    		sort.Slice(containers, func(i, j int) bool { return containers[i].Name < containers[j].Name })
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/generic.rules

    // filename. The rules here apply to every architecture.
    //
    // The code for parsing this file lives in rulegen.go; this file generates
    // ssa/rewritegeneric.go.
    
    // values are specified using the following format:
    // (op <type> [auxint] {aux} arg0 arg1 ...)
    // the type, aux, and auxint fields are optional
    // on the matching side
    //  - the type, aux, and auxint fields must match if they are specified.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
Back to top