Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 122 for clobber (0.14 sec)

  1. src/net/http/client.go

    	}
    	return nil
    }
    
    // Post issues a POST to the specified URL.
    //
    // Caller should close resp.Body when done reading from it.
    //
    // If the provided body is an [io.Closer], it is closed after the
    // request.
    //
    // Post is a wrapper around DefaultClient.Post.
    //
    // To set custom headers, use [NewRequest] and DefaultClient.Do.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/compile.go

    	{name: "lowered deadcode", fn: deadcode, required: true},
    	{name: "checkLower", fn: checkLower, required: true},
    	{name: "late phielim and copyelim", fn: copyelim},
    	{name: "tighten", fn: tighten, required: true}, // move values closer to their uses
    	{name: "late deadcode", fn: deadcode},
    	{name: "critical", fn: critical, required: true}, // remove critical edges
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

        sources(Buildscript sources)
        compileAndInstrument{{"Compile and instrument\n(Execution engine)"}}
        classes(Buildscript classes*)
        
        sources --> compileAndInstrument --> classes
    ```
    
    #### Closer look at transformation of an individual Jars or class directories
    
    Transformation is done by modifying the bytecode of the plugin's jar or class directory. 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  4. src/runtime/panic.go

    	// checks the return value and jumps to the
    	// end of the function if deferproc returns != 0.
    	return0()
    	// No code can go here - the C return register has
    	// been set and must not be clobbered.
    }
    
    var rangeDoneError = error(errorString("range function continued iteration after function for loop body returned false"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/math/IntMath.java

            if (cmpRemToHalfDivisor == 0) { // exactly on the half mark
              increment = (mode == HALF_UP || (mode == HALF_EVEN & (div & 1) != 0));
            } else {
              increment = cmpRemToHalfDivisor > 0; // closer to the UP value
            }
            break;
          default:
            throw new AssertionError();
        }
        return increment ? div + signum : div;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/math/IntMath.java

            if (cmpRemToHalfDivisor == 0) { // exactly on the half mark
              increment = (mode == HALF_UP || (mode == HALF_EVEN & (div & 1) != 0));
            } else {
              increment = cmpRemToHalfDivisor > 0; // closer to the UP value
            }
            break;
          default:
            throw new AssertionError();
        }
        return increment ? div + signum : div;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  7. src/database/sql/driver/driver.go

    // [DriverContext]'s OpenConnector method, to allow drivers
    // access to context and to avoid repeated parsing of driver
    // configuration.
    //
    // If a Connector implements [io.Closer], the [database/sql.DB.Close]
    // method will call the Close method and return error (if any).
    type Connector interface {
    	// Connect returns a connection to the database.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 09:04:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  8. src/syscall/exec_linux.go

    	CLONE_VFORK          = 0x00004000 // set if the parent wants the child to wake it up on mm_release
    	CLONE_PARENT         = 0x00008000 // set if we want to have the same parent as the cloner
    	CLONE_THREAD         = 0x00010000 // Same thread group?
    	CLONE_NEWNS          = 0x00020000 // New mount namespace group
    	CLONE_SYSVSEM        = 0x00040000 // share system V SEM_UNDO semantics
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. src/crypto/aes/asm_ppc64x.s

    // STXVD2X/LXVD2X. The in-memory byte ordering
    // depends on the endianness of the machine. The
    // expanded keys are generated by expandKeyAsm above.
    //
    // Rkeyp holds the key pointer. It is clobbered. Once
    // the expanded keys are loaded, it is not needed.
    //
    // R12,R14-R21 are scratch registers.
    // For keyp of 10, V6, V11-V20 hold the expanded key.
    // For keyp of 12, V6, V9-V20 hold the expanded key.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/LinkedListMultimap.java

        /**
         * Constructs a new iterator over all values for the specified key starting at the specified
         * index. This constructor is optimized so that it starts at either the head or the tail,
         * depending on which is closer to the specified index. This allows adds to the tail to be done
         * in constant time.
         *
         * @throws IndexOutOfBoundsException if index is invalid
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 27.5K bytes
    - Viewed (0)
Back to top