Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 176 for _ignored (0.16 sec)

  1. src/os/exec/exec_test.go

    			os.Exit(0)
    		}()
    	} else {
    		signal.Ignore(os.Interrupt)
    	}
    
    	// Signal that the process is set up by closing stdout.
    	os.Stdout.Close()
    
    	if *read {
    		if pipeSignal != nil {
    			signal.Ignore(pipeSignal)
    		}
    		r := bufio.NewReader(os.Stdin)
    		for {
    			line, err := r.ReadBytes('\n')
    			if len(line) > 0 {
    				// Ignore write errors: we want to keep reading even if stderr is closed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheReportIntegrationTest.groovy

    import java.util.function.Consumer
    
    import static org.gradle.integtests.fixtures.configurationcache.ConfigurationCacheProblemsFixture.resolveConfigurationCacheReport
    
    // Ignore test on non-Windows platforms on CI since Playwright has unfulfilled package
    // dependencies on Linux and times out downloading the driver on MacOS.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. cni/cmd/istio-cni/main.go

    		return err
    	}
    	defer func() {
    		// Log sync will send logs to install-cni container via UDS.
    		// We don't need a timeout here because underlying the log pkg already handles it.
    		// this may fail, but it should be safe to ignore according
    		// to https://github.com/uber-go/zap/issues/328
    		_ = log.Sync()
    	}()
    
    	// TODO: implement plugin version
    	funcs := skel.CNIFuncs{
    		Add:   plugin.CmdAdd,
    		Del:   plugin.CmdDelete,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/options.go

    // purposes). Otherwise, a CRD client is created based on the configuration.
    type RegistryOptions struct {
    	// If FileDir is set, the below kubernetes options are ignored
    	FileDir string
    
    	Registries []string
    
    	// Kubernetes controller options
    	KubeOptions kubecontroller.Options
    	// ClusterRegistriesNamespace specifies where the multi-cluster secret resides
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/builder/iptables_builder_impl.go

    	for _, r := range rules {
    		chainTable := fmt.Sprintf("%s:%s", r.chain, r.table)
    		// Create new chain if key: `chainTable` isn't present in map
    		if !chainTableLookupSet.Contains(chainTable) {
    			// Ignore chain creation for built-in chains for iptables
    			if _, present := constants.BuiltInChainsMap[r.chain]; !present {
    				cmd := []string{"-t", r.table, "-N", r.chain}
    				output = append(output, cmd)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/runlit.cfg.py

        'tf-tfrt-opt',
        'tf_tfjs_translate',
        'tf_tfl_translate',
        'tfcompile',
        'tfg-opt-no-passes',
        'tfg-transforms-opt',
        'tfg-translate',
        'tfjs-opt',
    ]
    tools = [ToolSubst(s, unresolved='ignore') for s in tool_names]
    llvm_config.add_tool_substitutions(tools, tool_dirs)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 18:52:19 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/KnownProblemIds.groovy

            'validation:property-validation:value-not-set' : 'Value not set',
            'validation:type-validation:ignored-annotations-on-method' : 'Ignored annotations on method',
            'validation:type-validation:invalid-use-of-type-annotation' : 'Incorrect use of type annotation',
            'validation:type-validation:not-cacheable-without-reason' : 'Not cacheable without reason',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. cmd/object-handlers-common.go

    	// Return false for methods other than GET and HEAD.
    	if r.Method != http.MethodPut {
    		return false
    	}
    	// If the object doesn't have a modtime (IsZero), or the modtime
    	// is obviously garbage (Unix time == 0), then ignore modtimes
    	// and don't process the If-Modified-Since header.
    	if objInfo.ModTime.IsZero() || objInfo.ModTime.Equal(time.Unix(0, 0)) {
    		return false
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/SystemClassLoaderTest.groovy

     * When running with the daemon, success is dependent on DaemonConnector forking the daemon process with the right classpath.
     *
     * This test is not meaningful when running the embedded integration test mode, so we ignore it in that case.
     */
    class SystemClassLoaderTest extends AbstractIntegrationSpec {
    
        static heading = "systemClassLoader info"
        static noInfoHeading = "no systemClassLoader info"
    
        /*
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/declarative/dsl/tooling/builders/r89/DeclarativeDslToolingModelsCrossVersionTest.groovy

    import org.gradle.internal.declarativedsl.parsing.ParserKt
    import org.gradle.test.fixtures.plugin.PluginBuilder
    import org.gradle.tooling.ModelBuilder
    import spock.lang.Ignore
    
    @TargetGradleVersion(">=8.9")
    @ToolingApiVersion('>=8.9')
    @Ignore
    class DeclarativeDslToolingModelsCrossVersionTest extends ToolingApiSpecification {
    
        def setup(){
            settingsFile.delete() //we are using a declarative settings file
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:32:11 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top