Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 238 for west (0.3 sec)

  1. internal/s3select/select_test.go

    			wantResult: `{"request":{"uri":"/1","header":{"User-Agent":"test"}}}`,
    			withJSON: `{"request":{"uri":"/1","header":{"User-Agent":"test"}}}
    {"request":{"uri":"/2","header":{}}}`,
    		},
    		{
    			name:       "is-not-missing",
    			query:      `select * from s3object[*] as s where s.request.header['User-Agent'] is not missing`,
    			wantResult: `{"request":{"uri":"/1","header":{"User-Agent":"test"}}}`,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 76.2K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_tls_test.go

    			cb.applyUpstreamTLSSettings(opts, test.tls, test.mtlsCtx)
    
    			if test.expectTransportSocket && opts.mutable.cluster.TransportSocket == nil ||
    				!test.expectTransportSocket && opts.mutable.cluster.TransportSocket != nil {
    				t.Errorf("Expected TransportSocket %v", test.expectTransportSocket)
    			}
    			if test.expectTransportSocketMatch && opts.mutable.cluster.TransportSocketMatches == nil ||
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  3. src/runtime/mgcpacer.go

    	totalFree    atomic.Uint64 // total bytes freed
    	mappedReady  atomic.Uint64 // total virtual memory in the Ready state (see mem.go).
    
    	// test indicates that this is a test-only copy of gcControllerState.
    	test bool
    
    	_ cpu.CacheLinePad
    }
    
    func (c *gcControllerState) init(gcPercent int32, memoryLimit int64) {
    	c.heapMinimum = defaultHeapMinimum
    	c.triggered = ^uint64(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    func impl_Flistxattr(fd int, dest []byte) (sz int, err error) {
    	var _p0 unsafe.Pointer
    	if len(dest) > 0 {
    		_p0 = unsafe.Pointer(&dest[0])
    	} else {
    		_p0 = unsafe.Pointer(&_zero)
    	}
    	runtime.EnterSyscall()
    	r0, e2, e1 := CallLeFuncWithErr(GetZosLibVec()+SYS___FLISTXATTR_A<<4, uintptr(fd), uintptr(_p0), uintptr(len(dest)))
    	runtime.ExitSyscall()
    	sz = int(r0)
    	if int64(r0) == -1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    [[test_task_fail_on_no_test_executed]]
    ==== Deprecated running test task successfully when no test executed
    Running the `Test` task successfully when no test was executed is now deprecated and will become an error in Gradle 9.
    Note that it is not an error when no test sources are present, in this case the `test` task is simply skipped. It is only an error when test sources are present, but no test was selected for execution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  6. pkg/kubelet/stats/cri_stats_provider_test.go

    			expected: nil,
    		},
    	}
    	for _, test := range tests {
    		provider := &criStatsProvider{cpuUsageCache: test.cpuUsageCache}
    		// Before the update, the cached value should be nil
    		cached := provider.getContainerUsageNanoCores(test.stats)
    		assert.Nil(t, cached)
    
    		// Update the cache and get the latest value.
    		real := provider.getAndUpdateContainerUsageNanoCores(test.stats)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  7. pkg/apis/flowcontrol/validation/validation_test.go

    			errGot := ValidateLimitedPriorityLevelConfiguration(configuration, test.requestVersion, specPath, PriorityLevelValidationOptions{AllowZeroLimitedNominalConcurrencyShares: test.allowZero})
    			if !cmp.Equal(test.errExpected, errGot) {
    				t.Errorf("Expected error: %v, diff: %s", test.errExpected, cmp.Diff(test.errExpected, errGot))
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 54.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

            then:
            assertTransformed("test-1.0.jar", "test-1.0.jar.green")
    
            when:
            configurationCacheRun("usesFiles1", "resolveFilesWhenSerialized", "usesFiles2")
    
            then:
            assertTransformed()
        }
    
        def "buildSrc output may require transform output"() {
            withColorVariants(mavenRepo.module("test", "test", "12")).publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  9. cluster/gce/windows/k8s-node-setup.psm1

      Install-WindowsFeature Containers
    }
    
    # Verifies if Hyper-V should be enabled in the node
    function Test-ShouldEnableHyperVFeature {
      return "${env:WINDOWS_ENABLE_HYPERV}" -eq "true"
    }
    
    # Check if Hyper-V feature is enabled
    function Test-HyperVFeatureEnabled {
      return ((Get-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V).State -eq 'Enabled')
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  10. internal/bucket/lifecycle/lifecycle_test.go

    		t.Run(fmt.Sprintf("Test %d", i+1), func(t *testing.T) {
    			lc, err := ParseLifecycleConfig(bytes.NewReader([]byte(tc.inputConfig)))
    			if err != tc.expectedParsingErr {
    				t.Fatalf("%d: Expected %v during parsing but got %v", i+1, tc.expectedParsingErr, err)
    			}
    			if tc.expectedParsingErr != nil {
    				// We already expect a parsing error,
    				// no need to continue this test.
    				return
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top