Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 287 for unnamed (0.2 sec)

  1. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/AbstractConsoleDeprecationMessageGroupedTaskFunctionalTest.groovy

            given:
            def javaSourceFile = file("$JAVA_SRC_DIR_PATH/MyClass.java")
            def expectedOutput = "${javaSourceFile.absolutePath}:4: warning: [deprecation] Legacy in unnamed package has been deprecated"
    
            buildFile << """
                apply plugin: 'java'
    
                compileJava {
                    options.compilerArgs = ['-Xlint:all']
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/containingDeclarationProvider/AbstractContainingDeclarationProviderByReferenceTest.kt

                is KaClassLikeSymbol -> symbol.classId?.toString()
                else -> null
            }
    
            return qualifiedName ?: (symbol as? KaNamedSymbol)?.name?.asString() ?: "Unnamed"
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. platforms/extensibility/unit-test-fixtures/src/integTest/groovy/org/gradle/testfixtures/ProjectBuilderEndUserIntegrationTest.groovy

                }
                @Override
                Iterable<String> asArguments() {
                    return test.javaVersion.isCompatibleWith(JavaVersion.VERSION_1_9)
                        ? ["--add-opens=java.base/java.lang=ALL-UNNAMED"]
                        : []
                }
            }
            tasks.withType(Test).configureEach {
                jvmArgumentProviders.add(new AddOpensArgProvider(it))
            }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/project/IsolatedProject.java

         * should use the {@link #getPath()} method for a unique identifier for the project.
         * If the root project is unnamed and is located on a file system root it will have a randomly-generated name
         * </p>
         *
         * @return The name of this project. Never return null.
         * @since 8.8
         */
        String getName();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 18:34:13 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/Type.java

         */
        String CLASSPATH_JAR = "classpath-jar";
    
        /**
         * Artifact type name for a JAR file to unconditionally place on the module-path.
         * If the JAR is not modular, then it is loaded by Java as an unnamed module.
         * This type is new in Maven 4.
         */
        String MODULAR_JAR = "modular-jar";
    
        /**
         * Artifact type name for a JAR file that can be placed either on the annotation processor class-path
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. plugin/pkg/admission/noderestriction/admission_test.go

    		},
    		{
    			name:       "forbid create of unnamed eviction for unknown pod",
    			podsGetter: noExistingPods,
    			attributes: admission.NewAttributesRecord(unnamedEviction, nil, evictionKind, coremypod.Namespace, coremypod.Name, podResource, "eviction", admission.Create, &metav1.CreateOptions{}, false, mynode),
    			err:        "not found",
    		},
    
    		// Eviction for unnamed pod
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  7. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/impl/KtStandaloneProjectStructureProvider.kt

        override val allKtModules: List<KtModule>,
    ) : KtStaticProjectStructureProvider() {
        private val ktNotUnderContentRootModuleWithoutPsiFile by lazy {
            KtNotUnderContentRootModuleImpl(
                name = "unnamed-outside-content-root",
                moduleDescription = "Standalone-not-under-content-root-module-without-psi-file",
                project = project,
            )
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Apr 10 16:23:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. src/internal/types/testdata/check/decls2/decls2a.go

    func (a, b /* ERROR "method has multiple receivers" */ T3) _() {}
    func (a, b, c /* ERROR "method has multiple receivers" */ T3) _() {}
    
    // Methods associated with non-local or unnamed types.
    func (int /* ERROR "cannot define new methods on non-local type int" */ ) m() {}
    func ([ /* ERROR "invalid receiver" */ ]int) m() {}
    func (time /* ERROR "cannot define new methods on non-local type time.Time" */ .Time) m() {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tf_tfl_translate.cc

        const auto &output_tensor = (*subgraph.tensors())[buffer];
        std::cout << "\tname: '"
                  << (output_tensor->name() ? output_tensor->name()->str()
                                            : "<<unnamed>>")
                  << "' buffer: " << buffer;
        if (loc) std::cout << llvm::formatv(" {0}", loc(id)).str();
        std::cout << '\n';
      };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 14K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/configuration/DaemonParametersTest.groovy

            def addOpensArgs = parameters.effectiveJvmArgs.findAll { it.startsWith("--add-opens") }
            !addOpensArgs.isEmpty()
            addOpensArgs.every { it.matches("--add-opens=.*?/.*?=ALL-UNNAMED") }
    
            and: "The required --add-opens args should not contain duplicates"
            addOpensArgs.toSet().size() == addOpensArgs.size()
        }
    
        def "can configure debug mode"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top