Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 59 of 59 for predefined (0.16 sec)

  1. common/config/.golangci.yml

          - name: superfluous-else
          - name: modifies-parameter
          - name: unreachable-code
          - name: struct-tag
          - name: constant-logical-expr
          - name: bool-literal-in-expr
          - name: redefines-builtin-id
          - name: imports-blacklist
          - name: range-val-in-closure
          - name: range-val-address
          - name: waitgroup-by-value
          - name: atomic
          - name: call-to-gc
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. pkg/config/mesh/mesh.go

    	// We want to keep semantics that all fields are overrides, except proxy config is a merge. This allows
    	// decent customization while also not requiring users to redefine the entire proxy config if they want to override
    	// Note: if we want to add more structure in the future, we will likely need to revisit this idea.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    Ideally, the plugin implementation does not need to ask the user for the coordinates of that dependency - it can simply predefine a sensible default version.
    
    Let’s look at an example of a plugin that downloads files containing data for further processing.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadataStoreTest.groovy

        @SuppressWarnings("unused")
        interface TypeHidingPropertyFromSuperType extends BaseTypeWithPropertyToHide {
            @Ignored
            @Override
            String getBaseProperty()
        }
    
        def "can redefine ignored supertype property"() {
            expect:
            assertProperties TypeRedefiningIgnoredPropertyFromSuperType, [
                propertyIgnoredInBase: [(TYPE): Small]
            ]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 11 15:31:37 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  5. src/html/template/template.go

    // Named template definitions ({{define ...}} or {{block ...}} statements) in text
    // define additional templates associated with t and are removed from the
    // definition of t itself.
    //
    // Templates can be redefined in successive calls to Parse,
    // before the first use of [Template.Execute] on t or any associated template.
    // A template definition with a body containing only white space and comments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 21:00:46 UTC 2024
    - 17K bytes
    - Viewed (0)
  6. src/flag/flag.go

    	flag := &Flag{name, usage, value, value.String()}
    	_, alreadythere := f.formal[name]
    	if alreadythere {
    		var msg string
    		if f.name == "" {
    			msg = f.sprintf("flag redefined: %s", name)
    		} else {
    			msg = f.sprintf("%s flag redefined: %s", f.name, name)
    		}
    		panic(msg) // Happens only if flags are declared with identical names
    	}
    	if pos := f.undef[name]; pos != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h

    #define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TUPLE_H_
    
    #include <utility>  // For ::std::pair.
    
    // The compiler used in Symbian has a bug that prevents us from declaring the
    // tuple template as a friend (it complains that tuple is redefined).  This
    // hack bypasses the bug by declaring the members that should otherwise be
    // private as public.
    // Sun Studio versions < 12 also have the above bug.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h

    #define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TUPLE_H_
    
    #include <utility>  // For ::std::pair.
    
    // The compiler used in Symbian has a bug that prevents us from declaring the
    // tuple template as a friend (it complains that tuple is redefined).  This
    // hack bypasses the bug by declaring the members that should otherwise be
    // private as public.
    // Sun Studio versions < 12 also have the above bug.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/scheme_test.go

    	if err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    	if len(kinds) != 1 {
    		t.Errorf("expected only one kind for InternalSimple after double registration")
    	}
    }
    
    // redefine InternalSimple with the same name, but obviously as a different type than in runtimetesting
    type InternalSimple struct {
    	runtime.TypeMeta `json:",inline"`
    	TestString       string `json:"testString"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 38.2K bytes
    - Viewed (0)
Back to top