Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 552 for reachable (0.15 sec)

  1. api/openapi-spec/v3/apis__authentication.k8s.io__v1beta1_openapi.json

    which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/networking/v1/types_swagger_doc_generated.go

    }
    
    var map_Ingress = map[string]string{
    	"":         "Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc.",
    	"metadata": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ProtocolToModelAdapter.java

            }
            if (targetType.isEnum()) {
                return adaptToEnum(targetType, sourceObject);
            }
    
            // Restrict the decorations to those required to decorate all views reachable from this type
            ViewDecoration decorationsForThisType = decoration.isNoOp() ? decoration : decoration.restrictTo(TYPE_INSPECTOR.getReachableTypes(targetType));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 04:42:54 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanTest.groovy

            executionPlan.addFilter(filter)
            addToGraphAndPopulate([c])
    
            then:
            executes(b, c)
            filtered(a)
        }
    
        def "does not build graph for or execute filtered tasks reachable via #orderingRule task ordering"() {
            given:
            Task a = filteredTask("a")
            Task b = task("b", (orderingRule): [a])
            Task c = task("c", dependsOn: [a])
            Spec<Task> filter = Mock()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    	// selector, rather than a field selector, or when the field is embedded via
    	// a pointer.
    	//
    	// Per the spec:
    	//
    	//  "If f is an embedded field, it must be reachable without pointer
    	//  indirections through fields of the struct. "
    	//
    	// Example:
    	//  import "unsafe"
    	//
    	//  type T struct { f int }
    	//  type S struct { *T }
    	//  var s S
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  6. src/go/types/issues_test.go

    )
    
    // go.dev/issue/46905: make sure template is not the first package qualified.
    var _ fmt.Stringer = 1 // ERRORx "cannot use 1.*as fmt\\.Stringer"
    
    // Packages should be fully qualified when there is ambiguity in reachable
    // packages. In this case both a (and for that matter html/template) import
    // text/template.
    func _() { a.G(template /* ERRORx "cannot use .*html/template.*Template" */ .Template{}) }
    `
    
    		tsrc = `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/modfile.go

    // goModSummary returns a summary of the go.mod file for module m,
    // taking into account any replacements for m, exclusions of its dependencies,
    // and/or vendoring.
    //
    // m must be a version in the module graph, reachable from the Target module.
    // In readonly mode, the go.sum file must contain an entry for m's go.mod file
    // (or its replacement). goModSummary must not be called for the Target module
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 17:53:40 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/networking/v1/generated.proto

      repeated string except = 2;
    }
    
    // Ingress is a collection of rules that allow inbound connections to reach the
    // endpoints defined by a backend. An Ingress can be configured to give services
    // externally-reachable urls, load balance traffic, terminate SSL, offer name
    // based virtual hosting etc.
    message Ingress {
      // Standard object's metadata.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  9. pkg/apis/networking/types.go

    // Ingress is a collection of rules that allow inbound connections to reach the
    // endpoints defined by a backend. An Ingress can be configured to give services
    // externally-reachable urls, load balance traffic, terminate SSL, offer name
    // based virtual hosting etc.
    type Ingress struct {
    	metav1.TypeMeta
    
    	// Standard object's metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/func.go

    		f.HTMLWriter.WritePhase(f.pass.name, fmt.Sprintf("%s <span class=\"stats\">%s</span>", f.pass.name, stats))
    		f.HTMLWriter.flushPhases()
    	}
    	f.fe.Fatalf(f.Entry.Pos, msg, args...)
    }
    
    // postorder returns the reachable blocks in f in a postorder traversal.
    func (f *Func) postorder() []*Block {
    	if f.cachedPostorder == nil {
    		f.cachedPostorder = postorder(f)
    	}
    	return f.cachedPostorder
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top