Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 187 for IsSkip (0.15 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

            then: // new path, should skip consumer
            result.assertTasksNotSkipped(":common:producer")
            assertTransformationsExecuted(
                singleStep('common.jar'),
            )
    
            when:
            run ":app:resolveGreen", "-DcommonOutputDir=out", "-DcommonFileName=common-blue.jar"
    
            then: // new name, should skip consumer
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

            '{'.code,
            '}'.code,
            '|'.code,
            '^'.code,
            '\''.code,
            ';'.code,
            '='.code,
            '@'.code,
          )
          .override(
            Encoding.SKIP,
            ':'.code,
            '/'.code,
            '\\'.code,
            '?'.code,
            '#'.code,
          )
          .test(UrlComponentEncodingTester.Component.USER)
      }
    
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  3. tests/migrate_test.go

    	AssertEqual(t, nil, err)
    }
    
    func TestMigrateWithDefaultValue(t *testing.T) {
    	if DB.Dialector.Name() == "sqlserver" {
    		// sqlserver driver treats NULL and 'NULL' the same
    		t.Skip("skip sqlserver")
    	}
    
    	type NullModel struct {
    		ID      uint
    		Content string `gorm:"default:null"`
    	}
    
    	type NullStringModel struct {
    		ID      uint
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  4. src/cmd/internal/testdir/testdir_test.go

    	case "errorcheckwithauto":
    		action = "errorcheck"
    		wantAuto = true
    		wantError = true
    	case "errorcheck", "errorcheckdir", "errorcheckoutput":
    		wantError = true
    	case "skip":
    		if *runSkips {
    			break
    		}
    		t.Skip("skip")
    	default:
    		t.Fatalf("unknown pattern: %q", action)
    	}
    
    	goexp := goExperiment
    	godebug := goDebug
    
    	// collect flags
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    		}
    
    		copy := func(a AST) AST {
    			var index int
    			switch a := a.(type) {
    			case *Typed:
    				// Remove the template added in skip.
    				if _, ok := a.Name.(*Template); ok {
    					popTemplate()
    				}
    				return nil
    			case *Closure:
    				// Undo the save in skip.
    				st.lambdaTemplateLevel = oldLambdaTemplateLevel[len(oldLambdaTemplateLevel)-1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener.go

    			// one port, then we pick a default service port. If service has
    			// multiple ports, we expect the user to provide a virtualService
    			// that will route to a proper Service.
    
    			// Skip ports we cannot bind to
    			if !node.CanBindToPort(bind.bindToPort, egressListener.IstioListener.Port.Number) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbTransportImpl.java

                    }
                    log.warn("Skipping message " + key);
                    if ( this.isSMB2() ) {
                        this.in.skip(size - Smb2Constants.SMB2_HEADER_LENGTH);
                    }
                    else {
                        this.in.skip(size - SmbConstants.SMB1_HEADER_LENGTH);
                    }
                }
            }
        }
    
    
        /**
         * @param notification
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
  8. hack/local-up-cluster.sh

      kubeconfig: ${CERT_DIR}/kube-proxy.kubeconfig
    hostnameOverride: ${HOSTNAME_OVERRIDE}
    mode: ${KUBE_PROXY_MODE}
    conntrack:
    # Skip setting sysctl value "net.netfilter.nf_conntrack_max"
      maxPerCore: 0
    # Skip setting "net.netfilter.nf_conntrack_tcp_timeout_established"
      tcpEstablishedTimeout: 0s
    # Skip setting "net.netfilter.nf_conntrack_tcp_timeout_close"
      tcpCloseWaitTimeout: 0s
    EOF
        if [[ -n ${FEATURE_GATES} ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue.go

    const (
    	// queueSkip indicates that the scheduling queue should skip requeuing the Pod to activeQ/backoffQ.
    	queueSkip queueingStrategy = iota
    	// queueAfterBackoff indicates that the scheduling queue should requeue the Pod after backoff is completed.
    	queueAfterBackoff
    	// queueImmediately indicates that the scheduling queue should skip backoff and requeue the Pod immediately to activeQ.
    	queueImmediately
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  10. src/net/http/fs_test.go

    		t.Logf("expected %q, got %q", "Hello world", s)
    	}
    }
    
    func TestDirJoin(t *testing.T) {
    	if runtime.GOOS == "windows" {
    		t.Skip("skipping test on windows")
    	}
    	wfi, err := os.Stat("/etc/hosts")
    	if err != nil {
    		t.Skip("skipping test; no /etc/hosts file")
    	}
    	test := func(d Dir, name string) {
    		f, err := d.Open(name)
    		if err != nil {
    			t.Fatalf("open of %s: %v", name, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
Back to top