Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of about 10,000 for aN (0.05 sec)

  1. src/cmd/internal/objabi/reloctype.go

    	// (in the latter case it refers to the concrete type contained in the itab).
    	// This is a marker relocation (0-sized), for the linker's reachabililty
    	// analysis.
    	R_USEIFACE
    	// R_USEIFACEMETHOD marks an interface method that is used in the function
    	// this relocation is applied to. The target is an interface type descriptor.
    	// The addend is the offset of the method in the type descriptor.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/custom_tasks.adoc

    An opposite option is only created if no option with the same name already exists for the task.
    
    `Double`, `Property<Double>`::
    Describes an option with a double value. +
    Passing the option on the command line also requires a value, e.g., `--factor=2.2` or `--factor 2.2`.
    
    `Integer`, `Property<Integer>`::
    Describes an option with an integer value. +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 15:21:05 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  3. src/internal/types/errors/codes.go

    	IncomparableMapKey
    
    	// InvalidIfaceEmbed occurs when a non-interface type is embedded in an
    	// interface (for go 1.17 or earlier).
    	_ // not used anymore
    
    	// InvalidPtrEmbed occurs when an embedded field is of the pointer form *T,
    	// and T itself is itself a pointer, an unsafe.Pointer, or an interface.
    	//
    	// Per the spec:
    	//  "An embedded field must be specified as a type name T or as a pointer to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:50:48 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  4. src/crypto/crypto.go

    type SignerOpts interface {
    	// HashFunc returns an identifier for the hash function used to produce
    	// the message passed to Signer.Sign, or else zero to indicate that no
    	// hashing was done.
    	HashFunc() Hash
    }
    
    // Decrypter is an interface for an opaque private key that can be used for
    // asymmetric decryption operations. An example would be an RSA key
    // kept in a hardware module.
    type Decrypter interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ioctl_zos.go

    // functions for specific types are permissible.
    
    // IoctlSetInt performs an ioctl operation which sets an integer value
    // on fd, using the specified request number.
    func IoctlSetInt(fd int, req int, value int) error {
    	return ioctl(fd, req, uintptr(value))
    }
    
    // IoctlSetWinsize performs an ioctl on fd with a *Winsize argument.
    //
    // To change fd's window size, the req argument should be TIOCSWINSZ.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/design/gradle-module-metadata-1.0-specification.md

    ### `attributes` value
    
    This value, nested in `variants` or elements of `dependencies` or `dependencyConstraints` nodes, must contain an object with a value for each attribute.
    The attribute value must be a string or boolean.
    
    ### `capabilities` value
    
    This value must contain an array of 0 or more capabilities. Each capability is an object consisting of the mandatory following values:
    
    - `group`: The group of the capability. A string.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 23:32:14 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/isolation/Isolatable.java

    /**
     * Isolatable objects can return an isolated instance of the given type T from which this object was created.
     * An <b>isolated</b> instance has the same internal state as the original object on which this isolatable was based,
     * but it is guaranteed not to retain any references to mutable state from the original instance.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/net/InetAddresses.java

        }
        return (short) hextet;
      }
    
      /**
       * Convert a byte array into an InetAddress.
       *
       * <p>{@link InetAddress#getByAddress} is documented as throwing a checked exception "if IP
       * address is of illegal length." We replace it with an unchecked exception, for use by callers
       * who already know that addr is an array of length 4 or 16.
       *
       * @param addr the raw 4-byte or 16-byte IP address in big-endian order
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/zz_generated.conversion.go

    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 50K bytes
    - Viewed (0)
  10. platforms/ide/problems-api/src/main/java/org/gradle/problems/ProblemDiagnostics.java

         * In this case, the failure can be synthetic to provide the stack trace for the problem origin.
         * <p>
         * The failure can also be omitted due to limits. Its absence does not mean there was no exception causing the problem.
         */
        @Nullable
        Failure getFailure();
    
        /**
         * Returns an exception that can be thrown when this problem should result in an error.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:13:26 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top