Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 188 for then (0.13 sec)

  1. src/reflect/all_test.go

    //
    // During reflect.Value.Call, we create an argument frame and the associated data structures
    // to describe it to the garbage collector, populate the frame, call reflect.call to
    // run a function call using that frame, and then copy the results back out of the frame.
    // The reflect.call function does a memmove of the frame structure onto the
    // stack (to set up the inputs), runs the call, and the memmoves the stack back to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

      }
    }
    
    // Creates a new `tfl.qconst` op for the bias. The bias values are 0s, because
    // this bias a dummy bias (note that bias fusion is not considered for this
    // transformation). The quantization scale for the bias is input scale *
    // filter scale. `filter_const_op` is used to retrieve the filter scales and
    // the size of the bias constant.
    TFL::QConstOp CreateTflConstOpForDummyBias(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    	SUBQ    $-5, acc0
    	SBBQ    $-1, acc1
    	SBBQ    $3, acc2
    	CMOVQCS t0, acc0
    	CMOVQCS t1, acc1
    	CMOVQCS t2, acc2
    
    	// Add in the "s" part of the key
    	ADDQ 0+sStore, acc0
    	ADCQ 8+sStore, acc1
    
    	// Finally, constant time compare to the tag at the end of the message
    	XORQ    AX, AX
    	MOVQ    $1, DX
    	XORQ    (0*8)(inp), acc0
    	XORQ    (1*8)(inp), acc1
    	ORQ     acc1, acc0
    	CMOVQEQ DX, AX
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                }});
            }
    
            /**
             * Adds a getter that returns the value of the given field, initializing it if null using the given code. The code should leave the value on the top of the stack.
             */
            private void addLazyGetter(
                String methodName,
                Type returnType,
                String methodDescriptor,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    					}
    				}
    				for _, when := range rule.GetWhen() {
    					if when == nil {
    						errs = appendErrors(errs, fmt.Errorf("when field cannot be nil"))
    						continue
    					}
    					errs = appendErrors(errs, check(when.Key == "source.namespace", when.Key))
    					errs = appendErrors(errs, check(when.Key == "source.principal", when.Key))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. fastapi/routing.py

                    should have all the fields, including the ones that have the same value
                    as the default. This is different from `response_model_exclude_unset`
                    in that if the fields are set but contain the same default values,
                    they will be excluded from the response.
    
                    When `True`, default values are omitted from the response.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * a common base. This is slightly different from the corresponding
     * <code>java.io.File</code> usage; a '/' at the beginning of the second
     * parameter will still use the server component of the first parameter. The
     * examples below illustrate the resulting URLs when this second contructor
     * argument is used.
     *
     * <p><table border="1" cellpadding="3" cellspacing="0" width="100%">
     * <tr bgcolor="#ccccff">
     * <td colspan="3">
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/generic.rules

    //    uses must match (be == to) the first use.
    //  - v is defined to be the value matched.
    //  - an additional conditional can be provided after the match pattern with "&&".
    // on the generated side
    //  - the type of the top-level expression is the same as the one on the left-hand side.
    //  - the type of any subexpressions must be specified explicitly (or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  9. src/crypto/internal/nistec/fiat/p521_fiat64.go

    //
    //
    //
    // NOTE: In addition to the bounds specified above each function, all
    //
    //   functions synthesized for this Montgomery arithmetic require the
    //
    //   input to be strictly less than the prime modulus (m), and also
    //
    //   require the input to be in the unique saturated representation.
    //
    //   All functions also ensure that these two properties are true of
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 167K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    			nonOrphanOptions,
    			orphanDeleteStrategy,
    			true,
    			[]string{},
    		},
    		// cases run with nil DeleteOptions.OrphanDependents. If the object
    		// already has the orphan finalizer, then the DeleteStrategy should be
    		// ignored. Otherwise the DeleteStrategy decides whether to add the
    		// orphan finalizer.
    		{
    			podWithOrphanFinalizer("pod9"),
    			nilOrphanOptions,
    			defaultDeleteStrategy,
    			false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
Back to top