Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 623 for isSelect (0.25 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/input/pilot_override_kubernetes.yaml

                cpu: 123m
            overlays:
              - kind: Deployment
                name: istiod
                patches:
                  # Select list item by value
                  - path: spec.template.spec.containers.[name:discovery].args.[30m]
                    value: "60m" # OVERRIDDEN
                  # Select list item by key:value
                  - path: spec.template.spec.containers.[name:discovery].ports.[containerPort:8080].containerPort
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-profile/src/integTest/groovy/org/gradle/profile/ProfilingIntegrationTest.groovy

            then:
            def reportFile = findReport()
            Document document = Jsoup.parse(reportFile, null)
            !document.select("TD:contains(:jar)").isEmpty()
            !document.select("TD:contains(:a:jar)").isEmpty()
            !document.select("TD:contains(:b:jar)").isEmpty()
            !document.select("TD:contains(:c:jar)").isEmpty()
            document.text().contains("build fooTask")
            document.text().contains("-x barTask")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 12:58:53 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/VisualCppToolChainTest.groovy

            windowsSdkLookup.available >> false
    		ucrtLookup.available >> false
    
            and:
            def result = toolChain.select(Stub(NativePlatformInternal))
    
            then:
            !result.available
            getMessage(result) == "vs install not found anywhere"
        }
    
        def "is not available when windows SDK cannot be located"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  4. tests/scopes_test.go

    	}
    
    	var maxId int64
    	userTable := func(db *gorm.DB) *gorm.DB {
    		return db.WithContext(context.Background()).Table("users")
    	}
    	if err := DB.Scopes(userTable).Select("max(id)").Scan(&maxId).Error; err != nil {
    		t.Errorf("select max(id)")
    	}
    }
    
    func TestComplexScopes(t *testing.T) {
    	tests := []struct {
    		name     string
    		queryFn  func(tx *gorm.DB) *gorm.DB
    		expected string
    	}{
    		{
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Jan 12 08:42:21 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. internal/grid/muxserver.go

    func (m *muxServer) handleInbound(c *Connection, inbound <-chan []byte, handlerIn chan<- []byte) {
    	for {
    		select {
    		case <-m.ctx.Done():
    			return
    		case in, ok := <-inbound:
    			if !ok {
    				return
    			}
    			select {
    			case <-m.ctx.Done():
    				return
    			case handlerIn <- in:
    				m.send(message{Op: OpUnblockClMux, MuxID: m.ID, Flags: c.baseFlags})
    			}
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/swift/basic/kotlin/build.gradle.kts

            compileTask.get().compilerArgs.add("-O")
        }
    }
    // end::swift-compiler-options-per-variants[]
    
    // tag::swift-select-target-machines[]
    application {
        targetMachines = listOf(machines.linux.x86_64, machines.macOS.x86_64)
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. src/cmd/cover/html.go

    				margin: 0 5px;
    			}
    			{{colors}}
    		</style>
    	</head>
    	<body>
    		<div id="topbar">
    			<div id="nav">
    				<select id="files">
    				{{range $i, $f := .Files}}
    				<option value="file{{$i}}">{{$f.Name}} ({{printf "%.1f" $f.Coverage}}%)</option>
    				{{end}}
    				</select>
    			</div>
    			<div id="legend">
    				<span>not tracked</span>
    			{{if .Set}}
    				<span class="cov0">not covered</span>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 08 14:33:36 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_fuzz_non_crash_signal.txt

    			panic(err)
    		}
    		// signal may not be received immediately. Wait for it.
    		select{}
    	})
    }
    
    func FuzzKill(f *testing.F) {
    	f.Fuzz(func(*testing.T, bool) {
    		pid := syscall.Getpid()
    		if err := syscall.Kill(pid, syscall.SIGKILL); err != nil {
    			panic(err)
    		}
    		// signal may not be received immediately. Wait for it.
    		select{}
    	})
    }
    
    func FuzzCrash(f *testing.F) {
    	f.Fuzz(func(*testing.T, bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/scopes/Maven3ScopeManagerConfiguration.java

                    select(CommonBuilds.PROJECT_PATH_TEST, CommonBuilds.BUILD_PATH_COMPILE),
                    Collections.singletonList(system),
                    nonTransitiveDependencyScopes));
            result.add(internalScopeManager.createResolutionScope(
                    RS_TEST_RUNTIME,
                    InternalScopeManager.Mode.ELIMINATE,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Mar 27 14:46:12 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/DefaultNativeToolChainRegistryTest.groovy

            registry.registerDefaultToolChain("test3", TestNativeToolChain)
            registry.addDefaultToolChains()
    
            and:
            def tc = registry.getForPlatform(platform)
            def result = tc.select(platform)
    
            when:
            result.newCompiler(CCompileSpec.class)
    
            then:
            GradleException e = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
Back to top