Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 230 for langues (0.17 sec)

  1. android/guava/src/com/google/common/hash/Hasher.java

     * {@link #putString(CharSequence, Charset)} is generally only useful for cross-language
     * compatibility (otherwise prefer {@link #putUnencodedChars}). However, the character encodings
     * must be identical across languages. Also beware that {@link Charset} definitions may occasionally
     * change between Java releases.
     *
     * <p><b>Warning:</b> Chunks of data that are put into the {@link Hasher} are not delimited. The
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 15 20:59:00 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  2. pkg/api/v1/service/util.go

    // If the field is not specified, turn to parse and verify the AnnotationLoadBalancerSourceRangesKey annotation from a service,
    // extracting the source ranges to allow, and if not present returns a default (allow-all) value.
    func GetLoadBalancerSourceRanges(service *v1.Service) (utilnet.IPNetSet, error) {
    	var ipnets utilnet.IPNetSet
    	var err error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 30 15:56:47 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/objectivecpp/plugins/ObjectiveCppLangPlugin.java

                builder.internalView(DependentSourceSetInternal.class);
            }
    
            @Mutate
            void registerLanguageTransform(LanguageTransformContainer languages, ServiceRegistry serviceRegistry) {
                languages.add(new ObjectiveCpp());
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/main/java/org/gradle/language/rc/plugins/WindowsResourceScriptPlugin.java

                builder.defaultImplementation(DefaultWindowsResourceSet.class);
            }
    
            @Mutate
            void registerLanguageTransform(LanguageTransformContainer languages, ServiceRegistry serviceRegistry) {
                languages.add(new WindowsResources());
            }
        }
    
        private static class WindowsResources extends NativeLanguageTransform<WindowsResourceSet> {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. src/cmd/trace/goroutines.go

    			<td> {{$Time.String}}</td>
    		{{end}}
    	</tr>
    {{end}}
    </table>
    
    <h3 id="ranges">Special ranges</h3>
    
    The table below describes how much of the traced period each goroutine spent in
    certain special time ranges.
    If a goroutine has spent no time in any special time ranges, it is excluded from
    the table.
    For example, how much time it spent helping the GC. Note that these times do
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/core-plugins/plugin_reference.adoc

    // limitations under the License.
    
    [[plugin_reference]]
    = Gradle Plugin Reference
    
    This page contains links and short descriptions for all the core plugins provided by Gradle itself.
    
    == JVM languages and frameworks
    
    <<java_plugin.adoc#java_plugin,Java>>::
    Provides support for building any type of Java project.
    
    <<java_library_plugin.adoc#java_library_plugin,Java Library>>::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. pkg/registry/core/limitrange/storage/storage.go

    	api "k8s.io/kubernetes/pkg/apis/core"
    	"k8s.io/kubernetes/pkg/registry/core/limitrange"
    )
    
    // REST implements a RESTStorage for limit ranges.
    type REST struct {
    	*genericregistry.Store
    }
    
    // NewREST returns a RESTStorage object that will work against limit ranges.
    func NewREST(optsGetter generic.RESTOptionsGetter) (*REST, error) {
    	store := &genericregistry.Store{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  8. test-site/conf/application.conf

    #
    # See http://www.playframework.com/documentation/latest/ApplicationSecret for more details.
    application.secret="0IQMdC<sFZR?TrOJg1AKDu=PL3p@XhQ_g4<PeoxaQMJf3^pwe<?yJvq;0tECs:@r"
    
    # The application languages
    # ~~~~~
    application.langs="en"
    
    # Global object class
    # ~~~~~
    # Define the Global object class for this application.
    # Default to Global in the root package.
    # application.global=Global
    
    # Router
    # ~~~~~
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/TreeRangeSet.java

       * element will be contained in this {@code RangeSet} if and only if it is contained in at least
       * one {@code Range} in {@code ranges}.
       *
       * @since 21.0
       */
      public static <C extends Comparable<?>> TreeRangeSet<C> create(Iterable<Range<C>> ranges) {
        TreeRangeSet<C> result = create();
        result.addAll(ranges);
        return result;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs-asciidoctor-extensions-base/src/main/resources/multi-language-samples.js

      //  2) Only one language can be selected per domain (to allow selection to persist across all docs pages)
      //  3) There is exactly 1 small set of languages to choose from. This does not allow for multiple language preferences. For example, users cannot prefer both Kotlin and ZSH.
      //  4) Only 1 sample of each language can exist in the same collection.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top