Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 195 for Roll (0.03 sec)

  1. security/pkg/pki/ca/selfsignedcarootcertrotator.go

    			rootCertRotatorLog.Errorf("Failed to roll forward root certificate (error: %s). "+
    				"Abort new root certificate", err.Error())
    			return
    		}
    		// caSecret is out-of-date. Need to load the latest istio-ca-secret to roll back root certificate.
    		_, err = rotator.updateRootCertificate(nil, false, oldCaCert, oldCaPrivateKey, oldRootCerts)
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  2. test/codegen/arithmetic.go

    	// 386:"IMUL3L\t[$]-1431655765","ROLL\t[$]31",-"DIVQ"
    	// arm64:"MOVD\t[$]-6148914691236517205","MOVD\t[$]3074457345618258602","MUL","ROR",-"DIV"
    	// arm:"MUL","CMP\t[$]715827882",-".*udiv"
    	// ppc64x:"MULLD","ROTL\t[$]63"
    	even := n%6 == 0
    
    	// amd64:"MOVQ\t[$]-8737931403336103397","IMULQ",-"ROLQ",-"DIVQ"
    	// 386:"IMUL3L\t[$]678152731",-"ROLL",-"DIVQ"
    	// arm64:"MOVD\t[$]-8737931403336103397","MUL",-"ROR",-"DIV"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:28:00 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. test/codegen/mathbits.go

    	// amd64:"ROLQ"
    	// arm64:"ROR"
    	// ppc64x:"ROTL"
    	// s390x:"RISBGZ\t[$]0, [$]63, [$]37, "
    	// wasm:"I64Rotl"
    	return bits.RotateLeft64(n, 37)
    }
    
    func RotateLeft32(n uint32) uint32 {
    	// amd64:"ROLL" 386:"ROLL"
    	// arm:`MOVW\tR[0-9]+@>23`
    	// arm64:"RORW"
    	// ppc64x:"ROTLW"
    	// s390x:"RLL"
    	// wasm:"I32Rotl"
    	return bits.RotateLeft32(n, 9)
    }
    
    func RotateLeft16(n uint16, s int) uint16 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:51:17 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  4. src/reflect/abi.go

    		// at the top.
    		a.stackBytes = align(a.stackBytes, uintptr(t.Align()))
    		return nil
    	}
    	// Hold a copy of "a" so that we can roll back if
    	// register assignment fails.
    	aOld := *a
    	if !a.regAssign(t, 0) {
    		// Register assignment failed. Roll back any changes
    		// and stack-assign.
    		*a = aOld
    		a.stackAssign(t.Size(), uintptr(t.Align()))
    		return &a.steps[len(a.steps)-1]
    	}
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/operations/DefaultBuildOperationQueue.java

                            // finishing an execution node. Adding this constraint here means that we can make all build operation queue workers compliant with this
                            // constraint and then gradually roll this out to other worker threads, such as task action workers.
                            //
                            // See {@link ProjectLeaseRegistry#whileDisallowingProjectLockChanges} for more details
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 31 15:18:20 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

          mlir::TFL::CreatePostQuantizePass(emit_quant_adaptor_ops));
      // TODO(b/265081639): When added PrepareQuantizeVariablesPass before adding
      // PrepareQuantizePass, an error occurs in certain model. It could fix it by
      // roll-back to run PrepareQuantizeVariablesPass, QuantizePass,
      // PostQuantizePass as suggested in cl/479634700. Need to figure out the
      // fundamental reason of the error, and (if needed) fix it without this
      // rollback.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMultipartRequestHandler.java

        }
    
        // ===================================================================================
        //                                                                           Roll-back
        //                                                                           =========
        @Override
        public void rollback() {
            for (final MultipartFormFile formFile : elementsFile.values()) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  8. pkg/controller/deployment/rolling.go

    	// * The total number of pods will then be 9 and the newRS can be scaled up to 10.
    	//
    	// case 2:
    	// Same example, but pushing a new pod template instead of rolling back (aka "roll over"):
    	// * The new replica set created must start with 0 replicas because allPodsCount is already at 13.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  9. pkg/controller/volume/persistentvolume/pv_controller_test.go

    				reactor.DeleteVolumeEvent(volume)
    				err := wait.Poll(10*time.Millisecond, wait.ForeverTestTimeout, func() (bool, error) {
    					return len(ctrl.volumes.store.ListKeys()) == 0, nil
    				})
    				if err != nil {
    					return err
    				}
    
    				// Wait for the PVC to get fully processed. This avoids races between PV controller and DeleteClaimEvent
    				// below.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

                        [ -e "\$t" ] ;;                      #(
                  *)    false ;;
                esac
            then
                arg=\$( cygpath --path --ignore --mixed "\$arg" )
            fi
            # Roll the args list around exactly as many times as the number of
            # args, so each arg winds up back in the position where it started, but
            # possibly modified.
            #
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top