Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 917 for whether (0.09 sec)

  1. src/main/java/org/codelibs/core/beans/PropertyDesc.java

         */
        boolean hasWriteMethod();
    
        /**
         * Returns whether the property value can be retrieved.
         *
         * @return whether the property value can be retrieved
         */
        boolean isReadable();
    
        /**
         * Returns whether the property value can be set.
         *
         * @return whether the property value can be set
         */
        boolean isWritable();
    
        /**
    Registered: 2025-05-24 08:58
    - Last Modified: 2025-05-10 01:32
    - 4.3K bytes
    - Viewed (0)
  2. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/mvn/MavenOptions.java

        /**
         * Indicates whether Maven should operate in non-recursive mode (i.e., not build child modules).
         *
         * @return an {@link Optional} containing true if non-recursive mode is enabled, false if disabled, or empty if not specified
         */
        @Nonnull
        Optional<Boolean> nonRecursive();
    
        /**
         * Indicates whether Maven should force a check for updated snapshots on remote repositories.
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-02-26 17:31
    - 8.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/timer/TimeoutTask.java

        }
    
        /**
         * Returns whether the task has expired.
         *
         * @return whether the task has expired
         */
        public boolean isExpired() {
            return System.currentTimeMillis() >= startTime + timeoutMillis;
        }
    
        /**
         * Returns whether the task is permanent.
         *
         * @return whether the task is permanent
         */
        public boolean isPermanent() {
    Registered: 2025-05-24 08:58
    - Last Modified: 2025-05-10 01:32
    - 2.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SSPContext.java

         */
        void dispose () throws CIFSException;
    
    
        /**
         * @param mechanism
         * @return whether the specified mechanism is supported
         */
        boolean isSupported ( ASN1ObjectIdentifier mechanism );
    
    
        /**
         * @param selectedMech
         * @return whether the specified mechanism is preferred
         */
        boolean isPreferredMech ( ASN1ObjectIdentifier selectedMech );
    
    
        /**
    Registered: 2025-05-25 00:10
    - Last Modified: 2018-07-01 13:12
    - 2.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/Configuration.java

         * 
         * @return whether a authentication failure during DFS resolving will throw an exception
         */
        boolean isDfsStrictView ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.dfs.disabled</tt> (boolean, default false)
         * 
         * @return whether DFS lookup is disabled
         */
        boolean isDfsDisabled ();
    
    
        /**
    Registered: 2025-05-25 00:10
    - Last Modified: 2023-01-05 13:06
    - 18K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbTransportInternal.java

        /**
         * @param cap
         * @return whether the transport has the given capability
         * @throws SmbException
         */
        boolean hasCapability ( int cap ) throws SmbException;
    
    
        /**
         * @return whether the transport has been disconnected
         */
        boolean isDisconnected ();
    
    
        /**
         * @param hard
         * @param inuse
         * @return whether the connection was in use
         * @throws IOException
    Registered: 2025-05-25 00:10
    - Last Modified: 2018-07-01 13:12
    - 3K bytes
    - Viewed (0)
  7. cni/pkg/config/config.go

    	ZtunnelUDSAddress string
    
    	// Whether ambient is enabled
    	AmbientEnabled bool
    
    	// The labelSelector to enable ambient for specific pods or namespaces
    	AmbientEnablementSelector string
    
    	// Whether ambient DNS capture is enabled
    	AmbientDNSCapture bool
    
    	// Whether ipv6 is enabled for ambient capture
    	AmbientIPv6 bool
    
    Registered: 2025-05-28 22:53
    - Last Modified: 2025-05-06 05:38
    - 6.3K bytes
    - Viewed (2)
  8. src/main/java/org/codelibs/core/beans/BeanDesc.java

         */
        Map<TypeVariable<?>, Type> getTypeVariables();
    
        /**
         * Returns whether the {@link PropertyDesc} exists.
         *
         * @param propertyName
         *            The property name. Must not be {@literal null} or empty string
         * @return Whether the {@link PropertyDesc} exists
         */
        boolean hasPropertyDesc(String propertyName);
    
        /**
    Registered: 2025-05-24 08:58
    - Last Modified: 2025-05-10 01:32
    - 7.9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/SmbNegotiationResponse.java

         * @param singingEnforced
         * @param request
         * @return whether the protocol negotiation was successful
         */
        boolean isValid ( CIFSContext cifsContext, SmbNegotiationRequest request );
    
    
        /**
         * 
         * @return selected dialect
         */
        DialectVersion getSelectedDialect ();
    
    
        /**
         * 
         * @return whether the server has singing enabled
         */
        boolean isSigningEnabled ();
    Registered: 2025-05-25 00:10
    - Last Modified: 2018-07-01 13:12
    - 2.6K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/arch/riscv64.go

    // instruction set, to minimize its interaction with the core of the
    // assembler.
    
    package arch
    
    import (
    	"cmd/internal/obj"
    	"cmd/internal/obj/riscv"
    )
    
    // IsRISCV64AMO reports whether op is an AMO instruction that requires
    // special handling.
    func IsRISCV64AMO(op obj.As) bool {
    	switch op {
    	case riscv.ASCW, riscv.ASCD, riscv.AAMOSWAPW, riscv.AAMOSWAPD, riscv.AAMOADDW, riscv.AAMOADDD,
    Registered: 2025-05-27 11:13
    - Last Modified: 2025-02-14 15:13
    - 1.8K bytes
    - Viewed (0)
Back to top