Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for search_ (0.2 sec)

  1. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    	*out = *in
    	if in.Nameservers != nil {
    		in, out := &in.Nameservers, &out.Nameservers
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.Searches != nil {
    		in, out := &in.Searches, &out.Searches
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.Options != nil {
    		in, out := &in.Options, &out.Options
    		*out = make([]PodDNSConfigOption, len(*in))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    OS_VERSION; private static final String PATH_SEP; private String family; private String name; private String version; private String arch; public void Os(); public void Os(String); public void setFamily(String); public void setName(String); public void setArch(String); public void setVersion(String); public boolean eval() throws Exception; public static boolean isFamily(String); public static boolean isName(String); public static boolean isArch(String); public static boolean isVersion(String); public static...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 164.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    	993, 994, 995, 996, 997, 998, 720, 887,
    	175, 891, 710, 894, 180, 716, 999,
    }
    
    // m49Index gives indexes into fromM49 based on the three most significant bits
    // of a 10-bit UN.M49 code. To search an UN.M49 code in fromM49, search in
    //
    //	fromM49[m49Index[msb39(code)]:m49Index[msb3(code)+1]]
    //
    // for an entry where the first 7 bits match the 7 lsb of the UN.M49 code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.jar

    OS_VERSION; private static final String PATH_SEP; private String family; private String name; private String version; private String arch; public void Os(); public void Os(String); public void setFamily(String); public void setName(String); public void setArch(String); public void setVersion(String); public boolean eval() throws Exception; public static boolean isFamily(String); public static boolean isName(String); public static boolean isArch(String); public static boolean isVersion(String); public static...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 160K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/s390x/asmz.go

    	op_SRNMT   uint32 = 0xB2B9 // FORMAT_S          SET DFP ROUNDING MODE
    	op_SRP     uint32 = 0xF000 // FORMAT_SS3        SHIFT AND ROUND DECIMAL
    	op_SRST    uint32 = 0xB25E // FORMAT_RRE        SEARCH STRING
    	op_SRSTU   uint32 = 0xB9BE // FORMAT_RRE        SEARCH STRING UNICODE
    	op_SRXT    uint32 = 0xED49 // FORMAT_RXF        SHIFT SIGNIFICAND RIGHT (extended DFP)
    	op_SSAIR   uint32 = 0xB99F // FORMAT_RRE        SET SECONDARY ASN WITH INSTANCE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  6. api/maven-api-model/src/main/mdo/maven.mdo

              <version>4.0.0+</version>
              <description>
                The version of the reporting plugin to be used. Starting with Maven 3, if no version is defined explicitly,
                version is searched in {@code build/plugins} then in {@code build/pluginManagement}.
              </description>
              <type>String</type>
            </field>
            <field>
              <name>reportSets</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  7. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    schwarz
    
    // science : 2014-09-11 dot Science Limited
    science
    
    // scot : 2014-01-23 Dot Scot Registry Limited
    scot
    
    // search : 2016-06-09 Charleston Road Registry Inc.
    search
    
    // seat : 2014-05-22 SEAT, S.A. (Sociedad Unipersonal)
    seat
    
    // secure : 2015-08-27 Amazon Registry Services, Inc.
    secure
    
    // security : 2015-05-14 XYZ.COM LLC
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    recurrent neural network architectures for large scale acoustic modeling.'
    INTERSPEECH, 2014.
    The coupling of input and forget gate (CIFG) is based on:
    http://arxiv.org/pdf/1503.04069.pdf
    Greff et al. 'LSTM: A Search Space Odyssey'
    The layer normalization is based on:
    https://arxiv.org/pdf/1607.06450.pdf
    Ba et al. 'Layer Normalization'
      }];
    
      let arguments = (
        ins TFL_TensorOf<[F32, QI8, QI16]>:$input,
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  9. src/net/http/server.go

    	// early. (We can't return an error from WriteHeader even if we wanted to.)
    	if code < 100 || code > 999 {
    		panic(fmt.Sprintf("invalid WriteHeader code %v", code))
    	}
    }
    
    // relevantCaller searches the call stack for the first function outside of net/http.
    // The purpose of this function is to provide more helpful error messages.
    func relevantCaller() runtime.Frame {
    	pc := make([]uintptr, 16)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    aster/standards/SPIFFE-ID.md#21-trust-domain trustDomain: "cluster.local" # The namespace to treat as the administrative root namespace for Istio configuration. # When processing a leaf namespace Istio will search for declarations in that namespace first # and if none are found it will search in the root namespace. Any matching declaration found in the root namespace # is processed as if it were declared in the leaf namespace. rootNamespace: {{ .Values.meshConfig.rootNamespace | default .Values....
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top