Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 99 for Tap (0.02 sec)

  1. platforms/core-runtime/instrumentation-agent-services/src/integTest/groovy/org/gradle/internal/instrumentation/agent/AgentApplicationTest.groovy

            value = IntegTestPreconditions.IsEmbeddedExecutor,
            reason = "Tests the embedded distribution"
        )
        def "daemon spawned from embedded runner has agent enabled"() {
            given:
            executer.tap {
                // Force a separate daemon spawned by the InProcessGradleExecuter
                requireDaemon()
                requireIsolatedDaemons()
            }
            withAgent()
            withDumpAgentStatusTask()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/build/KotlinDslTestProjectInitiation.groovy

        }
    
        TestFile withFile(String path, String content = "") {
            return file(path).tap { text = content.stripIndent() }
        }
    
        TestFile withEmptyJar(String path) {
            return this.file(path).tap { jarFile ->
                jarFile.parentFile.mkdirs()
                new ZipOutputStream(jarFile.newOutputStream()).close()
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/integTest/groovy/org/gradle/kotlin/dsl/KotlinScriptCacheCleanupIntegrationTest.groovy

            String[] scriptCacheBaseLine = scriptCacheDir.list()
    
            and:
            TestFile outdatedScriptCache = scriptCacheDir.file('7c8e05b2aa9d61f6b8422a683803c455').tap {
                assert !exists()
                file('classes/Program.class').createFile()
            }
            TestFile gcFile = kotlinDslWorkspace.file('gc.properties')
            gcFile.createFile().lastModified = daysAgo(8)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/plugins/form-validator/lang/vi.js

    chỉ website chưa chính xác",badCustomVal:"Dữ liệu chưa chính xác",andSpaces:" và các khoảng cách ",badInt:"Yêu cầu chỉ nhập số",badSecurityNumber:"Mã bảo mật chưa chính xác",badUKVatAnswer:"UK VAT chưa chính xác",badStrength:"Mật khẩu chưa đủ độ phức tạp",badNumberOfSelectedOptionsStart:"Bạn cần tích chọn ít nhất ",badNumberOfSelectedOptionsEnd:" lựa chọn",badAlphaNumeric:"Yêu cầu chỉ nhập chữ hoặc số ",badAlphaNumericExtra:" và ",wrongFileSize:"File của bạn quá lớn (chỉ chấp nhận file không quá %s...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheClassLoaderCachingIntegrationTest.groovy

        def "reuses cached ClassLoaders"() {
    
            given: 'a Task that holds some static data'
            File staticDataLib = file("lib/StaticData.jar").tap {
                parentFile.mkdirs()
            }
            jarWithClasses(
                staticDataLib,
                StaticData: """
                    import org.gradle.api.*;
                    import org.gradle.api.tasks.*;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/testng/TestNGOptionsTest.groovy

            }
        }
    
        private TestNGOptions testNGOptionsWithPrefix(String prefix, boolean booleanValue, int intValue) {
            return TestUtil.newInstance(TestNGOptions, layout)
            .tap {
                setOutputDirectory(new File(prefix + "OutputDirectory"))
                setIncludeGroups([prefix + "IncludedGroup"] as Set)
                setExcludeGroups([prefix + "ExcludedGroup"] as Set)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. pkg/istio-agent/xds_proxy.go

    		return nil, fmt.Errorf("proxy not connected to Istiod")
    	}
    	stop := connection.stopChan
    
    	// Only allow one tap request at a time
    	p.tapMutex.Lock()
    	defer p.tapMutex.Unlock()
    
    	// Send to Istiod
    	if connection.deltaRequestsChan != nil {
    		// Need to tap into Delta. Our Tap mechanism is not aware of whether we are tapping into SotW or Delta; we always get SotW
    		// Convert SotW to Delta.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  8. pkg/config/xds/filter_types.gen.go

    	_ "github.com/envoyproxy/go-control-plane/envoy/config/rbac/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/config/route/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/config/tap/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/config/trace/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/config/upstream/local_address_selector/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/data/accesslog/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 02:48:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  9. pkg/istio-agent/tap_proxy.go

    			err := downstream.Send(resp)
    			if err != nil {
    				log.Errorf("failed to send: %v", err)
    				return err
    			}
    		} else {
    			log.Errorf("failed to call tap request: %v", err)
    			return err
    		}
    	}
    	return nil
    }
    
    func (p *tapProxy) DeltaAggregatedResources(downstream DeltaDiscoveryStream) error {
    	return fmt.Errorf("not implemented")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ToBeFixedSpecInterceptor.groovy

        }
    
        private static List<ResettableExpectations> allResettableExpectationsOf(instance) {
            allInstanceFieldsOf(instance).findResults { field ->
                try {
                    def fieldValue = field.tap { accessible = true }.get(instance)
                    fieldValue instanceof ResettableExpectations ? fieldValue : null
                } catch (Exception ignored) {
                    null
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 13:10:05 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top