Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 804 for corerest (0.28 sec)

  1. pilot/pkg/xds/eds.go

    				continue
    			}
    		}
    		builder := endpoints.NewEndpointBuilder(clusterName, proxy, req.Push)
    
    		// We skip cache if assertions are enabled, so that the cache will assert our eviction logic is correct
    		if !features.EnableUnsafeAssertions {
    			cachedEndpoint := eds.Cache.Get(&builder)
    			if cachedEndpoint != nil {
    				resources = append(resources, cachedEndpoint)
    				cached++
    				continue
    			}
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/impl/MimeTypeHelperImplTest.java

            assertContentType("application/zip", "extractor/zip/test.zip", "hoge.zip");
            assertContentType("application/x-lharc", "extractor/lha/test.lzh", "hoge.lzh"); // TODO is it correct?
    
            assertContentType("application/xml", "extractor/test.mm", "hoge.mm");
    
            assertContentType("message/rfc822", "extractor/eml/sample1.eml", "sample1.eml");
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_discovery_controller_test.go

    			},
    			Subresources: []apidiscoveryv2.APISubresourceDiscovery{
    				{
    					Subresource:   "status",
    					Verbs:         []string{"get", "patch", "update"},
    					AcceptedTypes: nil, // is this correct?
    					ResponseKind: &metav1.GroupVersionKind{
    						Group:   "stable.example.com",
    						Version: "v1",
    						Kind:    "CoolFoo",
    					},
    				},
    			},
    		},
    	},
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r34/ToolingApiIdeaModelCrossVersionSpec.groovy

            then:
            UnsupportedMethodException e = thrown()
            e.message.startsWith("Unsupported method: IdeaModule.getJdkName()")
        }
    
        @TargetGradleVersion(">=3.4 <4.5")
        def "provides correct dependencies when using java-library plugin"() {
            given:
            settingsFile << """
                rootProject.name = 'root'
                include 'a', 'b', 'c', 'd', 'e', 'f'
            """
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. pkg/proxy/util/nodeport_addresses.go

    // the other family).
    func NewNodePortAddresses(family v1.IPFamily, cidrStrings []string) *NodePortAddresses {
    	npa := &NodePortAddresses{}
    
    	// Filter CIDRs to correct family
    	for _, str := range cidrStrings {
    		if (family == v1.IPv4Protocol) == netutils.IsIPv4CIDRString(str) {
    			npa.cidrStrings = append(npa.cidrStrings, str)
    		}
    	}
    	if len(npa.cidrStrings) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. src/go/types/conversions.go

    // of x is fully known, but that's not the case for say string(1<<s + 1.0):
    // Here, the type of 1<<s + 1.0 will be UntypedFloat which will lead to the
    // (correct!) refusal of the conversion. But the reported error is essentially
    // "cannot convert untyped float value to string", yet the correct error (per
    // the spec) is that we cannot shift a floating-point value: 1 in 1<<s should
    // be converted to UntypedFloat because of the addition of 1.0. Fixing this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:51:00 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. common/config/.golangci.yml

        # it's a comma-separated list of prefixes
        local-prefixes: istio.io/
      misspell:
        # Correct spellings using locale preferences for US or UK.
        # Default is to use a neutral variety of English.
        # Setting locale to US will correct the British spelling of 'colour' to 'color'.
        locale: US
        ignore-words:
          - cancelled
      lll:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. src/runtime/stkframe.go

    	//   and this is the return PC (just after the CALL
    	//   instruction). In this case, pc-1 reflects the CALL
    	//   instruction itself and is the correct source of symbolic
    	//   information.
    	//
    	// - If this frame "called" sigpanic, then pc is the
    	//   instruction that panicked, and pc is the correct address
    	//   to use for symbolic information.
    	//
    	// - If this is the innermost frame, then PC is where
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleKotlinDslIntegrationTest.kt

            )
        }
    
        @Test
        fun `given a buildscript block compilation error, it reports correct error location`() {
    
            assertCorrectLocationIsReportedForErrorIn("buildscript")
        }
    
        @Test
        fun `given a plugins block compilation error, it reports correct error location`() {
    
            assertCorrectLocationIsReportedForErrorIn("plugins")
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  10. src/index/suffixarray/suffixarray_test.go

    	// Index may not find the results in the same order as find) => in general
    	// we cannot simply check that the res and exp lists are equal
    
    	// check that each result is in fact a correct match and there are no duplicates
    	slices.Sort(res)
    	for i, r := range res {
    		if r < 0 || len(tc.source) <= r {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top