Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,457 for providedBy (0.2 sec)

  1. src/go/doc/doc.go

    	// declarations
    	Consts []*Value
    	Types  []*Type
    	Vars   []*Value
    	Funcs  []*Func
    
    	// Examples is a sorted list of examples associated with
    	// the package. Examples are extracted from _test.go files
    	// provided to NewFromFiles.
    	Examples []*Example
    
    	importByName map[string]string
    	syms         map[string]bool
    }
    
    // Value is the documentation for a (possibly grouped) var or const declaration.
    type Value struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json.go

    		actual.Version = defaultGVK.Version
    	}
    	return actual
    }
    
    // Decode attempts to convert the provided data into YAML or JSON, extract the stored schema kind, apply the provided default gvk, and then
    // load that data into an object matching the desired schema kind or the provided into.
    // If into is *runtime.Unknown, the raw data will be extracted and no decoding will be performed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 25 16:08:07 UTC 2022
    - 12K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/internal/typeconversion/DefaultTypeConverterTest.groovy

            def cl = {}
            converter.convert(cl, Long.class, false)
    
            then:
            def e = thrown(UnsupportedNotationException)
            e.message == TextUtil.toPlatformLineSeparators("""Cannot convert the provided notation to an object of type Long: ${cl.toString()}.
    The following types/formats are supported:
      - A String or CharSequence
      - Any Number""")
        }
    
        def "cannot convert arbitrary string to Long"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 13.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/registry/rest/rest.go

    // behavior in other cases.
    type Responder interface {
    	// Object writes the provided object to the response. Invoking this method multiple times is undefined.
    	Object(statusCode int, obj runtime.Object)
    	// Error writes the provided error to the response. This method may only be invoked once.
    	Error(err error)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  5. licenses/github.com/google/cel-go/LICENSE

    modification, are permitted provided that the following conditions are
    met:
    
       * Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
       * Redistributions in binary form must reproduce the above
    copyright notice, this list of conditions and the following disclaimer
    in the documentation and/or other materials provided with the
    distribution.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 23 01:29:36 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  6. LICENSE

       this list of conditions and the following disclaimer in the documentation
       and/or other materials provided with the distribution.
    
       THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
       ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
       WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 29 17:31:56 UTC 2021
    - 13.3K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

            }
        }
    
        /**
         * Filters the provided {@code unfiltered} additional classpath to only contain modules which are not already
         * present in {@code classpath} and {@code modulepath}. This operates in a two-step process. First, it attempts
         * to parse the names the jars in the provided classpath to quickly determine if the additional modules already
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. LICENSES/vendor/sigs.k8s.io/yaml/LICENSE

    modification, are permitted provided that the following conditions are
    met:
    
       * Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
       * Redistributions in binary form must reproduce the above
    copyright notice, this list of conditions and the following disclaimer
    in the documentation and/or other materials provided with the
    distribution.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:42:44 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  9. LICENSES/vendor/sigs.k8s.io/json/LICENSE

    modification, are permitted provided that the following conditions are
    met:
    
       * Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
       * Redistributions in binary form must reproduce the above
    copyright notice, this list of conditions and the following disclaimer
    in the documentation and/or other materials provided with the
    distribution.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 17:12:08 UTC 2021
    - 12.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesRulesIntegrationTest.groovy

       Cannot select module with conflict on capability 'cglib:cglib:3.2.5' also provided by [cglib:cglib:3.2.5($variant)]""")
            failure.assertHasCause("""Module 'cglib:cglib' has been rejected:
       Cannot select module with conflict on capability 'cglib:cglib:3.2.5' also provided by [cglib:cglib-nodep:3.2.5($variant)]""")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.1K bytes
    - Viewed (0)
Back to top