Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 48 for reachable (0.18 sec)

  1. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

        } catch (ExecutionException e) {
          builder.append("FAILURE, cause=[").append(e.getCause()).append("]");
        } catch (CancellationException e) {
          builder.append("CANCELLED"); // shouldn't be reachable
        } catch (Exception e) { // sneaky checked exception
          builder.append("UNKNOWN, cause=[").append(e.getClass()).append(" thrown from get()]");
        }
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  2. guava/src/com/google/common/util/concurrent/AbstractFuture.java

        } catch (ExecutionException e) {
          builder.append("FAILURE, cause=[").append(e.getCause()).append("]");
        } catch (CancellationException e) {
          builder.append("CANCELLED"); // shouldn't be reachable
        } catch (Exception e) { // sneaky checked exception
          builder.append("UNKNOWN, cause=[").append(e.getClass()).append(" thrown from get()]");
        }
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  3. src/cmd/go/internal/modload/buildlist.go

    		// imported packages. It may be okay to remove these from the list of
    		// explicit requirements if that removes them from the module graph. If they
    		// are present in the module graph reachable from rootPaths, they must not
    		// be at a lower version. That could cause a missing sum error or a new
    		// import ambiguity.
    		//
    		// For example, suppose a developer rewrites imports from example.com/m to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    			// If -linkshared, the GCProg generation code may need to reach
    			// out to the shared library for the type descriptor's data, even
    			// the type descriptor itself is not actually needed at run time
    			// (therefore not reachable). We still need to mangle its name,
    			// so it is consistent with the one stored in the shared library.
    			continue
    		}
    		name := ldr.SymName(s)
    		newName := typeSymbolMangle(name)
    		if newName != name {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. src/reflect/type.go

    	// process that next depth level.
    	var nextCount map[*structType]int
    
    	// visited records the structs that have been considered already.
    	// Embedded pointer fields can create cycles in the graph of
    	// reachable embedded types; visited avoids following those cycles.
    	// It also avoids duplicated effort: if we didn't find the field in an
    	// embedded type T at level 2, we won't find it in one at level 4 either.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  6. fastapi/param_functions.py

            ),
        ] = None,
        title: Annotated[
            Optional[str],
            Doc(
                """
                Human-readable title.
                """
            ),
        ] = None,
        description: Annotated[
            Optional[str],
            Doc(
                """
                Human-readable description.
                """
            ),
        ] = None,
        gt: Annotated[
            Optional[float],
            Doc(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

        }
    
        private static boolean isManagedProperty(PropertyMetadata property) {
            // Property is readable and without a setter of property type and the type can be created
            return property.isReadableWithoutSetterOfPropertyType() && (MANAGED_PROPERTY_TYPES.contains(property.getType()) || hasNestedAnnotation(property));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1/types.go

    	// The reason for the condition's last transition.
    	// +optional
    	Reason string `json:"reason,omitempty" protobuf:"bytes,4,opt,name=reason"`
    	// A human readable message indicating details about the transition.
    	// +optional
    	Message string `json:"message,omitempty" protobuf:"bytes,5,opt,name=message"`
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     * <code>rootProject</code> property.  The properties of this scope are readable or writable depending on the presence
     * of the corresponding getter or setter method.</li>
     *
     * <li>The extra properties of the project.  Each project maintains a map of extra properties, which
     * can contain any arbitrary name -&gt; value pair.  Once defined, the properties of this scope are readable and writable.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  10. src/syscall/zerrors_solaris_amd64.go

    	123: "protocol family not supported",
    	124: "address family not supported by protocol family",
    	125: "address already in use",
    	126: "cannot assign requested address",
    	127: "network is down",
    	128: "network is unreachable",
    	129: "network dropped connection because of reset",
    	130: "software caused connection abort",
    	131: "connection reset by peer",
    	132: "no buffer space available",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
Back to top