Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 84 for declareNS (0.2 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

            outputContains 'Providing metadata for group:projectB:2.2'
            outputContains 'Providing metadata for group:projectB:1.1'
    
            // Because the consumer has declared attributes, we now need to call the supplier for projectA too
            outputContains 'Providing metadata for group:projectA:1.2'
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// If not set, StatusReasonInvalid is used in the response to the client.
    	// +optional
    	Reason *metav1.StatusReason `json:"reason,omitempty" protobuf:"bytes,3,opt,name=reason"`
    	// messageExpression declares a CEL expression that evaluates to the validation failure message that is returned when this rule fails.
    	// Since messageExpression is used as a failure message, it must evaluate to a string.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// If not set, StatusReasonInvalid is used in the response to the client.
    	// +optional
    	Reason *metav1.StatusReason `json:"reason,omitempty" protobuf:"bytes,3,opt,name=reason"`
    	// messageExpression declares a CEL expression that evaluates to the validation failure message that is returned when this rule fails.
    	// Since messageExpression is used as a failure message, it must evaluate to a string.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  4. src/cmd/cgo/gcc.go

    	// of an error on a specific line.
    	//
    	// For each name, we generate these lines, where xxx is the index in toSniff plus one.
    	//
    	//	#line xxx "not-declared"
    	//	void __cgo_f_xxx_1(void) { __typeof__(name) *__cgo_undefined__1; }
    	//	#line xxx "not-type"
    	//	void __cgo_f_xxx_2(void) { name *__cgo_undefined__2; }
    	//	#line xxx "not-int-const"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    But it is an invalid configure closure for a Configuration.
    This example creates the `conf` Configuration immediately.
    During `resolve` task execution, the `distributions` block executed as if it were declared at the script-level:
    
    ```groovy
    configurations {
        conf.incoming.afterResolve {
            distributions {
                myDist {
                    contents {}
                }
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // aliasing, he should define GTEST_HAS_GLOBAL_STRING to 0.
    //
    // If the user doesn't define GTEST_HAS_GLOBAL_STRING, it is defined
    // heuristically.
    
    namespace testing {
    
    // Declares the flags.
    
    // This flag temporary enables the disabled tests.
    GTEST_DECLARE_bool_(also_run_disabled_tests);
    
    // This flag brings the debugger on an assertion failure.
    GTEST_DECLARE_bool_(break_on_failure);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"self.objs[2] + self.objs[0] == self.objs[0]": 11,
    
    				"self.objs[0] == [self.objs[0][0], self.objs[0][1]]": 22, // equal against a declared list
    				"self.objs[0] == [self.objs[0][1], self.objs[0][0]]": 22,
    
    				"self.objs[2] + [self.objs[0][0], self.objs[0][1]] == self.objs[0]": 26, // concat against a declared list
    				"size(self.objs[0] + [self.objs[3][0]]) == 3":                       20,
    			},
    		},
    		{name: "maps",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // aliasing, he should define GTEST_HAS_GLOBAL_STRING to 0.
    //
    // If the user doesn't define GTEST_HAS_GLOBAL_STRING, it is defined
    // heuristically.
    
    namespace testing {
    
    // Declares the flags.
    
    // This flag temporary enables the disabled tests.
    GTEST_DECLARE_bool_(also_run_disabled_tests);
    
    // This flag brings the debugger on an assertion failure.
    GTEST_DECLARE_bool_(break_on_failure);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        // TODO I would like to get rid of this. jvz.
        public Model getModel() {
            return model;
        }
    
        /**
         * Returns the project corresponding to a declared parent.
         *
         * @return the parent, or null if no parent is declared or there was an error building it
         */
        public MavenProject getParent() {
            return parent;
        }
    
        public void setParent(MavenProject parent) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

         * (which are not explicitly declared in the class).
         *
         * Includes type-aliased constructors too if typealias confirms to the [targetClassName].
         *
         * Do not confuse with constructors **declared** in the scope (see [FirScope.processDeclaredConstructors]).
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
Back to top