Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 874 for unnamed (0.15 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskInputsTest.groovy

            inputs.file('a').skipWhenEmpty()
    
            then:
            inputs.hasInputs
            inputs.hasSourceFiles
        }
    
        @Issue("https://github.com/gradle/gradle/issues/4085")
        def "can register more unnamed properties with method #method after properties have been queried"() {
            inputs."$method"("input-1")
            // Trigger naming properties
            inputs.hasSourceFiles
            inputs."$method"("input-2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 16 20:09:26 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/expr2.go

    	_ = c1r == c1s /* ERROR "mismatched types" */
    	_ = c1 == c1a
    	_ = c1a == c1
    	_ = c1 == c2 /* ERROR "mismatched types" */
    	_ = c1a == c2 /* ERROR "mismatched types" */
    
    	// various element types (unnamed types)
    	var (
    		d1 chan int
    		d1r <-chan int
    		d1s chan<- int
    		d1a chan<- int
    		d2 chan float32
    	)
    	_ = d1 == d1
    	_ = d1 == d1r
    	_ = d1 == d1s
    	_ = d1r == d1s /* ERROR "mismatched types" */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. src/internal/types/testdata/examples/methods.go

    func (t T2[_, _, X]) m5() X { return t.c }
    func (t T2[_, _, _]) m6() {}
    
    // As usual, blank names may be used for any object which we don't care about
    // using later. For instance, we may write an unnamed method with a receiver
    // that cannot be accessed:
    func (_ T2[_, _, _]) _() int { return 42 }
    
    // Because a receiver parameter list is simply a parameter list, we can
    // leave the receiver argument away for receiver types.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. src/internal/types/testdata/examples/functions.go

    	ffsend(recv /* ERROR "does not match" */ )
    	ffsend(send)
    }
    
    // When inferring elements of unnamed composite parameter types,
    // if the arguments are defined types, use their underlying types.
    // Even though the matching types are not exactly structurally the
    // same (one is a type literal, the other a named type), because
    // assignment is permitted, parameter passing is permitted as well,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 30 20:19:38 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/kubeconfig/kubeconfig.go

    	return nil
    }
    
    // GetClusterFromKubeConfig returns the default Cluster of the specified KubeConfig
    func GetClusterFromKubeConfig(config *clientcmdapi.Config) (string, *clientcmdapi.Cluster) {
    	// If there is an unnamed cluster object, use it
    	if config.Clusters[""] != nil {
    		return "", config.Clusters[""]
    	}
    
    	currentContext := config.Contexts[config.CurrentContext]
    	if currentContext != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 10:21:33 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/constant_fold_utils.cc

        VLOG(1) << "Can't evaluate since not all operands are constant.";
        return failure();
      }
    
      // Builds TF operation and sets all the attributes.
      std::string node_name = "unnamed";
      if (const StringAttr attr = inst->getAttrOfType<StringAttr>("name")) {
        node_name = std::string(attr.getValue());
      }
      absl::StatusOr<std::unique_ptr<tensorflow::NodeDef>> node_def =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/discovery/file/file.go

    	}
    	currentClusterName, currentCluster := kubeconfigutil.GetClusterFromKubeConfig(config)
    	if currentCluster == nil {
    		return nil, errors.New("the provided kubeconfig file must have a unnamed Cluster or a CurrentContext that specifies a non-nil Cluster")
    	}
    	if err := clientcmd.Validate(*config); err != nil {
    		return nil, err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:55 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. src/runtime/align_test.go

    			// aligned. We just check that foo is at a properly aligned offset.
    			t = p.Elem()
    		} else {
    			v.checkAddr(n.X)
    		}
    		if t.Underlying() == t {
    			v.t.Errorf("analysis can't handle unnamed type %s %v", v.fset.Position(n.Pos()), t)
    		}
    		key := "field " + t.String() + "." + n.Sel.Name
    		if !v.checked[key] {
    			v.t.Errorf("unchecked field %s %s", v.fset.Position(n.Pos()), key)
    		}
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 14:52:12 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/configuration/DaemonParameters.java

        public static final List<String> ALLOW_ENVIRONMENT_VARIABLE_OVERWRITE = ImmutableList.of("--add-opens=java.base/java.util=ALL-UNNAMED");
    
        private final ToolchainConfiguration toolchainConfiguration = new DefaultToolchainConfiguration();
        private final File gradleUserHomeDir;
    
        private File baseDir;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiClientJdkCompatibilityTest.groovy

                    if (${clientJdkVersion.isCompatibleWith(JavaVersion.VERSION_16)} && ['2.14.1'].contains(project.findProperty("gradleVersion"))) {
                        jvmArgs = ["--add-opens", "java.base/java.lang=ALL-UNNAMED"]
                    }
                }
    
                java {
                    disableAutoTargetJvm()
                    toolchain {
                        languageVersion = JavaLanguageVersion.of(8)
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top