Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for Accessible (0.18 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

            rules                 | description
            EachBeanViaDirectRule | "direct rule"
            EachBeanViaRuleSource | "rule source"
        }
    
        def "#description is not applied to descendants accessible only via references"() {
            def mmType = ModelTypes.modelMap(Bean)
    
            registry.registerInstance("bean1", new Bean(name: "bean1 unmodified"))
            registry.registerInstance("beans", new Bean(name: "beans"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  2. src/reflect/type.go

    	//
    	// For a non-interface type T or *T, the returned Method's Type and Func
    	// fields describe a function whose first argument is the receiver,
    	// and only exported methods are accessible.
    	//
    	// For an interface type, the returned Method's Type field gives the
    	// method signature, without a receiver, and the Func field is nil.
    	//
    	// Methods are sorted in lexicographic order.
    	Method(int) Method
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    //
    // PolicyTracker expects FakePolicyDefinition and FakePolicyBinding types
    // !TODO: refactor this test/framework to remove startInformers argument and
    // clean up the return args, and in general make it more accessible.
    func setupTestCommon(
    	t *testing.T,
    	compiler *fakeCompiler,
    	matcher generic.PolicyMatcher,
    	shouldStartInformers bool,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    This means, all dependencies, including Jars with module information, are put on the classpath.
    The advantage is that all internal classes of your (or other) modules are then accessible directly in tests.
    This may be a totally valid setup for unit testing, where we do not care about the larger module structure, but only about testing single functions.
    
    [NOTE]
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/extensions/v1beta1/types.go

    // This NetworkPolicyIngressRule matches traffic if and only if the traffic matches both ports AND from.
    type NetworkPolicyIngressRule struct {
    	// List of ports which should be made accessible on the pods selected for this rule.
    	// Each item in this list is combined using a logical OR.
    	// If this field is empty or missing, this rule matches all ports (traffic not restricted by port).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  6. src/encoding/json/decode_test.go

    	// These tests check that, assuming the byte type also has valid decoding methods,
    	// either the old base64 string encoding or the new per-element encoding can be
    	// successfully unmarshaled. The custom unmarshalers were accessible in earlier
    	// versions of Go, even though the custom marshaler was not.
    	{
    		CaseName: Name(""),
    		in:       `"AQID"`,
    		ptr:      new([]byteWithMarshalJSON),
    		out:      []byteWithMarshalJSON{1, 2, 3},
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * In previous Gradle versions, the `source` field in `SourceTask` was accessible from subclasses. This is not the case anymore as the `source` field is now declared as `private`.
     * In the Worker API, <<#rel5.0:worker_api, the working directory of a worker can no longer be set>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  8. src/runtime/mbitmap.go

    	// span has malloc headers.
    	minSizeForMallocHeader = goarch.PtrSize * ptrBits
    )
    
    // heapBitsInSpan returns true if the size of an object implies its ptr/scalar
    // data is stored at the end of the span, and is accessible via span.heapBits.
    //
    // Note: this works for both rounded-up sizes (span.elemsize) and unrounded
    // type sizes because minSizeForMallocHeader is guaranteed to be at a size
    // class boundary.
    //
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/proxier.go

    	serviceNoLocalEndpointsExternal sets.Set[string]
    	// lbNoNodeAccessIPPortProtocolEntries represents the set of loadBalancers IP + Port + Protocol that should not be accessible from K8s nodes
    	// We cannot directly restrict LB access from node using LoadBalancerSourceRanges, we need to install
    	// additional iptables rules.
    	// (ref: https://github.com/kubernetes/kubernetes/issues/119656)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    	s.deletePod(t, "pod4")
    	s.assertAddresses(t, "", "pod1", "pod2", "pod3", "svc1")
    	s.assertAddresses(t, s.addrXdsName("10.0.0.1"), "pod1", "pod2", "svc1")
    	s.assertAddresses(t, s.addrXdsName("127.0.0.4")) // Should not be accessible anymore
    	s.assertAddresses(t, s.podXdsName("pod4"))
    	s.assertEvent(t, s.podXdsName("pod4"))
    	s.clearEvents()
    
    	// Update Service to have a more restrictive label selector
    	s.addService(t, "svc1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
Back to top