Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for pasaule (0.16 sec)

  1. cmd/net_test.go

    			sortedIPList: []string{"127.0.0.1"},
    		},
    		// Non parsable ip is assumed to be hostame and gets preserved
    		// as the left most elements, regardless of IP based sorting.
    		{
    			ipList:       []string{"hostname", "127.0.0.1", "192.168.1.106"},
    			sortedIPList: []string{"hostname", "192.168.1.106", "127.0.0.1"},
    		},
    		// Non parsable ip is assumed to be hostname, with a mixed input of ip and hostname.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Apr 19 08:43:09 GMT 2024
    - 9.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/primitives/UnsignedInteger.java

      /**
       * Returns an {@code UnsignedInteger} holding the value of the specified {@code String}, parsed as
       * an unsigned {@code int} value.
       *
       * @throws NumberFormatException if the string does not contain a parsable unsigned {@code int}
       *     value
       */
      public static UnsignedInteger valueOf(String string) {
        return valueOf(string, 10);
      }
    
      /**
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 23 18:45:50 GMT 2023
    - 8.3K bytes
    - Viewed (0)
  3. docs/es/docs/python-types.md

    Lo importante es que usando los tipos de Python estándar en un único lugar (en vez de añadir más clases, decorator, etc.) **FastAPI** hará mucho del trabajo por ti.
    
    !!! info "Información"
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 9.2K bytes
    - Viewed (0)
  4. src/main/webapp/js/jquery-3.6.3.min.map

    8N,EAAYC,EACf9N,EAAMD,EAAOA,EAAKiL,eAAiBjL,EAAO0G,EAO3C,OAAKzG,GAAOtC,GAA6B,IAAjBsC,EAAIX,UAAmBW,EAAI4N,kBAMnDzH,GADAzI,EAAWsC,GACQ4N,gBACnBxH,GAAkBT,EAAOjI,GAQpB+I,GAAgB/I,IAClBoQ,EAAYpQ,EAASqQ,cAAiBD,EAAUE,MAAQF,IAGrDA,EAAUG,iBACdH,EAAUG,iBAAkB,SAAUlE,IAAe,GAG1C+D,EAAUI,aACrBJ,EAAUI,YAAa,WAAYnE,KASrC7K,EAAQuM,MAAQe,GAAQ,SAAUC,GAEjC,OADAtG,EAAQ1F,YAAagM,GAAKhM,YAAa/C,EAAS0C,cAAe,QACzB,oBAAxBqM,EAAGV,mBACfU,EAAGV,iBAAkB,uBAAwB3K,SAQhDlC,EAAQ0M,oBAAsBY,GAAQ,WAGrC,OAAOX,IAAIC,SAAU,gBAMpBpO,EAASqO,...
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 135.2K bytes
    - Viewed (0)
  5. src/main/webapp/js/admin/jquery-3.6.3.min.map

    8N,EAAYC,EACf9N,EAAMD,EAAOA,EAAKiL,eAAiBjL,EAAO0G,EAO3C,OAAKzG,GAAOtC,GAA6B,IAAjBsC,EAAIX,UAAmBW,EAAI4N,kBAMnDzH,GADAzI,EAAWsC,GACQ4N,gBACnBxH,GAAkBT,EAAOjI,GAQpB+I,GAAgB/I,IAClBoQ,EAAYpQ,EAASqQ,cAAiBD,EAAUE,MAAQF,IAGrDA,EAAUG,iBACdH,EAAUG,iBAAkB,SAAUlE,IAAe,GAG1C+D,EAAUI,aACrBJ,EAAUI,YAAa,WAAYnE,KASrC7K,EAAQuM,MAAQe,GAAQ,SAAUC,GAEjC,OADAtG,EAAQ1F,YAAagM,GAAKhM,YAAa/C,EAAS0C,cAAe,QACzB,oBAAxBqM,EAAGV,mBACfU,EAAGV,iBAAkB,uBAAwB3K,SAQhDlC,EAAQ0M,oBAAsBY,GAAQ,WAGrC,OAAOX,IAAIC,SAAU,gBAMpBpO,EAASqO,...
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 135.2K bytes
    - Viewed (0)
  6. cmd/site-replication.go

    			if err != nil {
    				return err
    			}
    		}
    		var (
    			ruleID  = fmt.Sprintf("site-repl-%s", d)
    			hasRule bool
    		)
    		var ruleARN string
    		for _, r := range replicationConfig.Rules {
    			if r.ID == ruleID {
    				hasRule = true
    				ruleARN = r.Destination.Bucket
    			}
    		}
    
    		ep, _ := url.Parse(peer.Endpoint)
    		var targets []madmin.BucketTarget
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 184.2K bytes
    - Viewed (1)
  7. tensorflow/c/eager/tape.h

    //
    // Gradient is the type returned by gradient functions. In Python TF it's either
    // Tensor or IndexedSlices or None, which here we map to nullptr. Gradients need
    // to allow their size to be computed and they need to be passable to a backward
    // function and deleted (as the backprop code creates lots of gradients the user
    // is not interested in).
    //
    // BackwardFunction needs to be a closure which stores intermediate activations
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Apr 02 12:40:29 GMT 2024
    - 47.2K bytes
    - Viewed (1)
  8. android/guava/src/com/google/common/net/MediaType.java

      }
    
      /**
       * Parses a media type from its string representation.
       *
       * @throws IllegalArgumentException if the input is not parsable
       */
      @CanIgnoreReturnValue // TODO(b/219820829): consider removing
      public static MediaType parse(String input) {
        checkNotNull(input);
        Tokenizer tokenizer = new Tokenizer(input);
        try {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Aug 07 16:17:10 GMT 2023
    - 46.2K bytes
    - Viewed (0)
  9. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // land : 2013-09-10 Binky Moon, LLC
    land
    
    // landrover : 2014-11-13 Jaguar Land Rover Ltd
    landrover
    
    // lanxess : 2015-07-30 LANXESS Corporation
    lanxess
    
    // lasalle : 2015-04-02 Jones Lang LaSalle Incorporated
    lasalle
    
    // lat : 2014-10-16 XYZ.COM LLC
    lat
    
    // latino : 2015-07-30 Dish DBS Corporation
    latino
    
    // latrobe : 2014-06-16 La Trobe University
    latrobe
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
  10. cmd/server_test.go

    	// time.Time does not honor xml marshaller, it means that we need
    	// to encode/format it before giving it to xml marshaling.
    
    	// This below check adds client side verification to see if its
    	// truly parsable.
    
    	// listMultipartUploadsResponse - format for list multipart uploads response.
    	type listMultipartUploadsResponse struct {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 108K bytes
    - Viewed (0)
Back to top