Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 143 for reachable (0.63 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/compile/internal/ssa/prove.go

    			}
    
    			check.SetArg(i, start)
    			goto replacedEnd
    		}
    		panic(fmt.Sprintf("unreachable, ind: %v, start: %v, end: %v", ind, start, end))
    	replacedEnd:
    
    		for i, v := range ind.Args {
    			if v != start {
    				continue
    			}
    
    			ind.SetArg(i, end)
    			goto replacedStart
    		}
    		panic(fmt.Sprintf("unreachable, ind: %v, start: %v, end: %v", ind, start, end))
    	replacedStart:
    
    		if nxt.Args[0] != ind {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  5. 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)
  6. staging/src/k8s.io/api/apps/v1beta2/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: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  7. src/math/big/float_test.go

    		}
    	case AwayFromZero:
    		if x < 0 {
    			ok = r <= x
    		} else {
    			ok = r >= x
    		}
    	case ToNegativeInf:
    		ok = r <= x
    	case ToPositiveInf:
    		ok = r >= x
    	default:
    		panic("unreachable")
    	}
    	if !ok {
    		t.Fatalf("incorrect test data for prec = %d, %s: x = %s, r = %s", prec, mode, toBinary(x), toBinary(r))
    	}
    
    	// compute expected accuracy
    	a := Exact
    	switch {
    	case r < x:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  8. src/go/printer/testdata/parser.go

    	switch t := ast.Unparen(x).(type) {
    	case *ast.BadExpr:
    	case *ast.Ident:
    	case *ast.BasicLit:
    	case *ast.FuncLit:
    	case *ast.CompositeLit:
    	case *ast.ParenExpr:
    		panic("unreachable")
    	case *ast.SelectorExpr:
    	case *ast.IndexExpr:
    	case *ast.SliceExpr:
    	case *ast.TypeAssertExpr:
    		if t.Type == nil {
    			// the form X.(type) is only allowed in type switch expressions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  9. src/go/printer/nodes.go

    		case ast.SEND:
    			p.print(token.CHAN)
    			p.setPos(x.Arrow)
    			p.print(token.ARROW)
    		}
    		p.print(blank)
    		p.expr(x.Value)
    
    	default:
    		panic("unreachable")
    	}
    }
    
    // normalizedNumber rewrites base prefixes and exponents
    // of numbers to use lower-case letters (0X123 to 0x123 and 1.2E3 to 1.2e3),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

          }
    
        /**
         * Configure this client to retry or not when a connectivity problem is encountered. By default,
         * this client silently recovers from the following problems:
         *
         * * **Unreachable IP addresses.** If the URL's host has multiple IP addresses,
         *   failure to reach any individual IP address doesn't fail the overall request. This can
         *   increase availability of multi-homed services.
         *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
Back to top