Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 296 for unreadable (0.27 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/TarFileTree.java

                    } finally {
                        inputStream.close();
                    }
                } catch (GradleException e) {
                    throw e; // Gradle exceptions are already meant to be human-readable, so just rethrow it
                } catch (Exception e) {
                    String message = "Unable to expand " + getDisplayName() + "\n"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/daemon-server/src/main/java/org/gradle/launcher/daemon/bootstrap/DaemonMain.java

            loggingManager.setLevelInternal(LogLevel.DEBUG);
    
            loggingManager.start();
        }
    
        /**
         * Set the permissions for the daemon log to be only readable/writable by the current user.
         */
        private void reducePermissionsOnDaemonLog(File daemonLog) {
            //noinspection ResultOfMethodCallIgnored
            daemonLog.setReadable(false, false);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. src/go/types/builtins.go

    			x1 = &t // use incoming x only for first argument
    		}
    		if x.mode == invalid {
    			return
    		}
    		// trace is only available in test mode - no need to record signature
    
    	default:
    		panic("unreachable")
    	}
    
    	assert(x.mode != invalid)
    	return true
    }
    
    // hasVarSize reports if the size of type t is variable due to type parameters
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/apps/v1/generated.proto

      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
    
      // The reason for the condition's last transition.
      // +optional
      optional string reason = 4;
    
      // A human readable message indicating details about the transition.
      // +optional
      optional string message = 5;
    }
    
    // DaemonSetList is a collection of daemon sets.
    message DaemonSetList {
      // Standard list metadata.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apps/v1/generated.proto

      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
    
      // The reason for the condition's last transition.
      // +optional
      optional string reason = 4;
    
      // A human readable message indicating details about the transition.
      // +optional
      optional string message = 5;
    }
    
    // DaemonSetList is a collection of daemon sets.
    message DaemonSetList {
      // Standard list metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/check.go

    	// Check loop construction
    	if f.RegAlloc == nil && f.pass != nil { // non-nil pass allows better-targeted debug printing
    		ln := f.loopnest()
    		if !ln.hasIrreducible {
    			po := f.postorder() // use po to avoid unreachable blocks.
    			for _, b := range po {
    				for _, s := range b.Succs {
    					bb := s.Block()
    					if ln.b2l[b.ID] == nil && ln.b2l[bb.ID] != nil && bb != ln.b2l[bb.ID].header {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. src/image/jpeg/scan.go

    	case 0x22:
    		subsampleRatio = image.YCbCrSubsampleRatio420
    	case 0x41:
    		subsampleRatio = image.YCbCrSubsampleRatio411
    	case 0x42:
    		subsampleRatio = image.YCbCrSubsampleRatio410
    	default:
    		panic("unreachable")
    	}
    	m := image.NewYCbCr(image.Rect(0, 0, 8*h0*mxx, 8*v0*myy), subsampleRatio)
    	d.img3 = m.SubImage(image.Rect(0, 0, d.width, d.height)).(*image.YCbCr)
    
    	if d.nComp == 4 {
    		h3, v3 := d.comp[3].h, d.comp[3].v
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/builtins.go

    			x1 = &t // use incoming x only for first argument
    		}
    		if x.mode == invalid {
    			return
    		}
    		// trace is only available in test mode - no need to record signature
    
    	default:
    		panic("unreachable")
    	}
    
    	assert(x.mode != invalid)
    	return true
    }
    
    // hasVarSize reports if the size of type t is variable due to type parameters
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  9. src/net/dial_test.go

    // for benchmarking by RFC 6890.
    const (
    	slowDst4 = "198.18.0.254"
    	slowDst6 = "2001:2::254"
    )
    
    // In some environments, the slow IPs may be explicitly unreachable, and fail
    // more quickly than expected. This test hook prevents dialTCP from returning
    // before the deadline.
    func slowDialTCP(ctx context.Context, network string, laddr, raddr *TCPAddr) (*TCPConn, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/AbstractTransformFuture.java

        try {
          sourceResult = getDone(localInputFuture);
        } catch (CancellationException e) {
          // TODO(user): verify future behavior - unify logic with getFutureValue in AbstractFuture. This
          // code should be unreachable with correctly implemented Futures.
          // Cancel this future and return.
          // At this point, inputFuture is cancelled and outputFuture doesn't exist, so the value of
          // mayInterruptIfRunning is irrelevant.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top