Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for Generating (1.15 sec)

  1. samples/bookinfo/src/reviews/reviews-application/src/main/webapp/index.html

      See the License for the specific language governing permissions and
      limitations under the License.
    -->
    <html>
    <body>
        <h1>Welcome to your Liberty Application</h1>
        <p>Thanks for generating this project using the app accelerator.  Please see below for some extra information on each of the technologies you chose</p>
        <!-- 
      Copyright (c) 2016 IBM Corp.
     
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 17:00:23 UTC 2017
    - 196.5K bytes
    - Viewed (0)
  2. fastapi/applications.py

                    """
                ),
            ] = "",
            root_path_in_servers: Annotated[
                bool,
                Doc(
                    """
                    To disable automatically generating the URLs in the `servers` field
                    in the autogenerated OpenAPI using the `root_path`.
    
                    Read more about it in the
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers_test.go

    		},
    	}
    
    	for i, test := range table {
    		rows, err := printNode(&test.node, printers.GenerateOptions{})
    		if err != nil {
    			t.Fatalf("Error generating table rows for Node: %#v", err)
    		}
    		for i := range rows {
    			rows[i].Object.Object = nil
    		}
    		if !reflect.DeepEqual(test.expected, rows) {
    			t.Errorf("%d mismatch: %s", i, cmp.Diff(test.expected, rows))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  4. fastapi/routing.py

                    """
                    Customize the function used to generate unique IDs for the *path
                    operations* shown in the generated OpenAPI.
    
                    This is particularly useful when automatically generating clients or
                    SDKs for your API.
    
                    Read more about it in the
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  5. cmd/object-handlers_test.go

    			t.Fatalf("MinIO %s : <ERROR>  %s", instanceType, err)
    		}
    
    		uploadIDs = append(uploadIDs, res.UploadID)
    	}
    
    	// Parts with size greater than 5 MiB.
    	// Generating a 6 MiB byte array.
    	validPart := bytes.Repeat([]byte("abcdef"), 1*humanize.MiByte)
    	validPartMD5 := getMD5Hash(validPart)
    	// Create multipart parts.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  6. cmd/server_test.go

    	// generate a random bucket name.
    	bucketName := getRandomBucketName()
    	// content of the object to be uploaded.
    	buffer1 := bytes.NewReader([]byte("hello world"))
    
    	// preparing for upload by generating the upload URL.
    	objectName := "test-object"
    	request, err := newTestSignedRequest(http.MethodPut, getPutObjectURL(s.endPoint, bucketName, objectName),
    		int64(buffer1.Len()), buffer1, s.accessKey, s.secretKey, s.signer)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/data.go

    	}
    	// TODO: other architectures.
    	return false
    }
    
    // FoldSubSymbolOffset computes the offset of symbol s to its top-level outer
    // symbol. Returns the top-level symbol and the offset.
    // This is used in generating external relocations.
    func FoldSubSymbolOffset(ldr *loader.Loader, s loader.Sym) (loader.Sym, int64) {
    	outer := ldr.OuterSym(s)
    	off := int64(0)
    	if outer != 0 {
    		off += ldr.SymValue(s) - ldr.SymValue(outer)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    	// Finally, put the most recent version of the config on the Kubelet, so
    	// people can see how it was configured.
    	klet.kubeletConfiguration = *kubeCfg
    
    	// Generating the status funcs should be the last thing we do,
    	// since this relies on the rest of the Kubelet having been constructed.
    	klet.setNodeStatusFuncs = klet.defaultNodeStatusFuncs()
    
    	return klet, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/ppc64/asm9.go

    // DS form for use in finding the size of the offset field in the instruction.
    // The size is needed when setting the offset value in the instruction
    // and when generating relocation for that field.
    // DS form instructions include: ld, ldu, lwa, std, stdu.  All other
    // loads and stores with an offset field are D form.  This function should
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/x86/asm6.go

    						default:
    							log.Fatalf("unknown TLS base location for %v", ctxt.Headtype)
    
    						case objabi.Hlinux, objabi.Hfreebsd:
    							if ctxt.Flag_shared {
    								// Note that this is not generating the same insns as the other cases.
    								//     MOV TLS, dst
    								// becomes
    								//     call __x86.get_pc_thunk.dst
    								//     movl (gotpc + g@gotntpoff)(dst), dst
    								// which is encoded as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top