Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 858 for isSelect (0.26 sec)

  1. 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)
  2. 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)
  3. 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)
  4. .teamcity/README.md

    # CI Pipeline Configuration
    
    ## Open & import the project
    
    In your IDEA, `File` - `Open`, select `.teamcity/pom.xml`, `import as project`, and you'll have a Maven project.
    
    ## Project structure
    
    Mostly a standard Maven project structure. The entry point `settings.kts` defines the TeamCity project.
    
    There are 3 subprojects in the TeamCity project hierarchy: `Check` for Gradle builds, `Promotion` for releasing Gradle versions, `Util` for miscellaneous utilities.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 23:02:25 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. test/fixedbugs/issue43292.go

    		var ok bool
    		i, ok = <-b
    		_ = ok
    
    		i.M()
    	}
    
    	{
    		i := I(A{})
    
    		b := make(chan I, 1)
    		b <- B{}
    
    		select {
    		case i = <-b:
    		}
    
    		i.M()
    	}
    
    	{
    		i := I(A{})
    
    		b := make(chan I, 1)
    		b <- B{}
    
    		var ok bool
    		select {
    		case i, ok = <-b:
    		}
    		_ = ok
    
    		i.M()
    	}
    }
    
    type I interface{ M() int }
    
    type T int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Dec 20 09:43:29 UTC 2020
    - 632 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/cpp/basic/groovy/build.gradle

            }
        }
    }
    // end::cpp-compiler-options-per-variants[]
    
    // tag::cpp-select-target-machines[]
    application {
        targetMachines = [
            machines.linux.x86_64,
            machines.windows.x86, machines.windows.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.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tf_device_index_selector.mlir

    // Test DeviceIndex selector.
    
    // RUN: tf-opt --tf-device-index-selector %s | FileCheck %s
    
    // CHECK-LABEL: func @select
    func.func @select(%arg0: tensor<f32>, %arg1: tensor<f32>) -> (tensor<i32>, tensor<f32>) {
      // CHECK:  %[[first:.*]] = "tf.DeviceIndex"
      // CHECK: constant dense<2>
      // CHECK:  return %[[first]],
      %0 = "tf.DeviceIndex"() {device = "", device_names = ["CPU", "GPU"]} : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 05:47:26 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  8. test/label.go

    // This set is caught by pass 1.
    // Does not compile.
    
    package main
    
    var x int
    
    func f() {
    L1: // ERROR "label .*L1.* defined and not used"
    	for {
    	}
    L2: // ERROR "label .*L2.* defined and not used"
    	select {}
    L3: // ERROR "label .*L3.* defined and not used"
    	switch {
    	}
    L4: // ERROR "label .*L4.* defined and not used"
    	if true {
    	}
    L5: // ERROR "label .*L5.* defined and not used"
    	f()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 28 02:31:54 UTC 2020
    - 1K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DependencyArtifactSelector.java

        /**
         * Returns the type of the artifact to select
         */
        String getType();
    
        /**
         * Returns the extension of the artifact to select. If it returns null, it will fallback to jar.
         */
        @Nullable
        String getExtension();
    
        /**
         * Returns the classifier of the artifact to select.
         */
        @Nullable
        String getClassifier();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/InjectUtil.java

                    // If there is a single constructor, and that constructor is public or package private we select it.
                    return constructor;
                }
                if (constructor.getAnnotation(Inject.class) != null) {
                    // Otherwise, if there is a single constructor that is annotated with `@Inject`, we select it (short-circuit).
                    return constructor;
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top