Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 88 for getPred (0.2 sec)

  1. staging/src/k8s.io/cli-runtime/pkg/resource/query_param_verifier.go

    			if param.GetParameter().GetNonBodyParameter().GetQueryParameterSubSchema().GetName() == string(queryParam) {
    				return true, nil
    			}
    
    			// lookup global parameters
    			if ref := param.GetJsonReference().GetXRef(); ref != "" {
    				if globalParam, ok := globalParams[ref]; ok && globalParam != nil && globalParam.GetValue().GetNonBodyParameter().GetQueryParameterSubSchema().GetName() == string(queryParam) {
    					return true, nil
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 01:23:27 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SID.java

        }
    
    
        /**
         * Get the RID
         * 
         * This is the last subauthority identifier
         * 
         * @return the RID
         */
        @Override
        public int getRid () {
            if ( getType() == SID_TYPE_DOMAIN )
                throw new IllegalArgumentException("This SID is a domain sid");
            return this.sub_authority[ this.sub_authority_count - 1 ];
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 14.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/DefaultMemoryManager.java

                // no need to free
                return false;
            }
            long totalMemory = ((OsMemoryStatusAspect.Available) status).getTotal();
            long freeMemory = ((OsMemoryStatusAspect.Available) status).getFree();
            long requestedFreeMemory = getMemoryThresholdInBytes(totalMemory) + (memoryAmountBytes > 0 ? memoryAmountBytes : 0);
            long newFreeMemory = doRequestFreeMemory(status.getName(), requestedFreeMemory, freeMemory);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/SID.java

         * @return domain SID
         */
        SID getDomainSid ();
    
    
        /**
         * Get the RID
         * 
         * This is the last subauthority identifier
         * 
         * @return the RID
         */
        int getRid ();
    
    
        /**
         * Return a String representing this SID ideal for display to
         * users. This method should return the same text that the ACL
         * editor in Windows would display.
         * <p>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DefaultConfigurableFilePermissionsTest.java

        }
    
        private static void assertPermissions(ConfigurableUserClassFilePermissions permission, boolean read, boolean write, boolean execute) {
            assertEquals("READ permission incorrect", read, permission.getRead());
            assertEquals("WRITE permission incorrect", write, permission.getWrite());
            assertEquals("EXECUTE permission incorrect", execute, permission.getExecute());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbPipeHandleImpl.java

        @Override
        public int sendrecv ( byte[] buf, int off, int length, byte[] inB, int maxRecvSize ) throws IOException {
            try ( SmbFileHandleImpl fh = ensureOpen();
                  SmbTreeHandleImpl th = fh.getTree() ) {
    
                if ( th.isSMB2() ) {
                    Smb2IoctlRequest req = new Smb2IoctlRequest(th.getConfig(), Smb2IoctlRequest.FSCTL_PIPE_TRANSCEIVE, fh.getFileId(), inB);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Apr 13 17:05:22 UTC 2020
    - 10.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/api/admin/stats/ApiAdminStatsAction.java

                final JvmPoolObj jvmPoolObj = new JvmPoolObj();
                jvmPoolObj.key = p.getName();
                jvmPoolObj.count = p.getCount();
                jvmPoolObj.used = p.getUsed().getBytes();
                jvmPoolObj.capacity = p.getTotalCapacity().getBytes();
                return jvmPoolObj;
            }).toArray(n -> new JvmPoolObj[n]);
            final GarbageCollectors gc = jvmStats.getGc();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. pkg/volume/csi/csi_client.go

    			metrics.Used = resource.NewQuantity(usage.GetUsed(), resource.BinarySI)
    		case csipbv1.VolumeUsage_INODES:
    			metrics.InodesFree = resource.NewQuantity(usage.GetAvailable(), resource.BinarySI)
    			metrics.Inodes = resource.NewQuantity(usage.GetTotal(), resource.BinarySI)
    			metrics.InodesUsed = resource.NewQuantity(usage.GetUsed(), resource.BinarySI)
    		default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 20 10:15:36 UTC 2022
    - 22.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbFileOutputStream.java

            }
    
            if ( this.tmp == null ) {
                throw new IOException("Bad file descriptor");
            }
    
            try ( SmbFileHandleImpl fh = ensureOpen();
                  SmbTreeHandleImpl th = fh.getTree() ) {
                if ( log.isDebugEnabled() ) {
                    log.debug("write: fid=" + fh + ",off=" + off + ",len=" + len + ",fp=" +  this.fp);
                }
    
                int w;
                do {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Nov 13 15:14:04 UTC 2021
    - 11.9K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbFileInputStream.java

                throw new IOException("Bad file descriptor");
            }
            // ensure file is open
            try ( SmbFileHandleImpl fd = ensureOpen();
                  SmbTreeHandleImpl th = fd.getTree() ) {
    
                /*
                 * Read AndX Request / Response
                 */
    
                if ( log.isTraceEnabled() ) {
                    log.trace("read: fid=" + fd + ",off=" + off + ",len=" + len);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 17 08:55:14 UTC 2020
    - 13.2K bytes
    - Viewed (0)
Back to top