Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 830 for dotV (0.06 sec)

  1. platforms/documentation/docs/src/snippets/tutorial/gradleProperties/tests-groovy/gradlePropertiesCommandLine.groovy.sample.conf

    executable: gradle
    args: printProperty
    flags: "--quiet --stacktrace -I init.gradle -PgradlePropertiesProp=commandLineValue -PgradleProperties.with.dots=commandLineValueForDottedProperty"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 248 bytes
    - Viewed (0)
  2. test/import.go

    // to a single type, they still all refer to the same type.
    
    package main
    
    import _os_ "os"
    import "os"
    import . "os"
    
    func f(e *os.File)
    
    func main() {
    	var _e_ *_os_.File
    	var dot *File
    
    	f(_e_)
    	f(dot)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 07:47:26 UTC 2012
    - 425 bytes
    - Viewed (0)
  3. src/main/java/jcifs/http/NtlmSsp.java

    /* jcifs smb client library in Java
     * Copyright (C) 2002  "Michael B. Allen" <jcifs at samba dot org>
     *                   "Eric Glass" <jcifs at samba dot org>
     *                   "Jason Pugsley" <jcifs at samba dot org>
     *                   "skeetz" <jcifs at samba dot org>
     *
     * This library is free software; you can redistribute it and/or
     * modify it under the terms of the GNU Lesser General Public
     * License as published by the Free Software Foundation; either
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.7K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/bigger-applications.md

    But that file doesn't exist, our dependencies are in a file at `app/dependencies.py`.
    
    Remember how our app/file structure looks like:
    
    <img src="/img/tutorial/bigger-applications/package.svg">
    
    ---
    
    The two dots `..`, like in:
    
    ```Python
    from ..dependencies import get_token_header
    ```
    
    mean:
    
    * Starting in the same package that this module (the file `app/routers/items.py`) lives in (the directory `app/routers/`)...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. src/net/http/cookiejar/jar.go

    		// are allowed.
    
    		// RFC 6265 section 5.2.3 mandates to strip an optional leading
    		// dot in the domain-attribute before processing the cookie.
    		//
    		// Most browsers don't do that for IP addresses, only curl
    		// (version 7.54) and IE (version 11) do not reject a
    		//     Set-Cookie: a=1; domain=.127.0.0.1
    		// This leading dot is optional and serves only as hint for
    		// humans to indicate that a cookie with "domain=.bbc.co.uk"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. src/go/internal/gcimporter/support.go

    func splitVargenSuffix(name string) (base, suffix string) {
    	i := len(name)
    	for i > 0 && name[i-1] >= '0' && name[i-1] <= '9' {
    		i--
    	}
    	const dot = "ยท"
    	if i >= len(dot) && name[i-len(dot):i] == dot {
    		i -= len(dot)
    		return name[:i], name[i:]
    	}
    	return name, ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/dcerpc/ndr/NdrObject.java

    /* jcifs msrpc client library in Java
     * Copyright (C) 2006  "Michael B. Allen" <jcifs at samba dot org>
     *                     "Eric Glass" <jcifs at samba dot org>
     * 
     * This library is free software; you can redistribute it and/or
     * modify it under the terms of the GNU Lesser General Public
     * License as published by the Free Software Foundation; either
     * version 2.1 of the License, or (at your option) any later version.
     * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/dcerpc/ndr/NdrObject.java

    /* jcifs msrpc client library in Java
     * Copyright (C) 2006  "Michael B. Allen" <jcifs at samba dot org>
     *                     "Eric Glass" <jcifs at samba dot org>
     * 
     * This library is free software; you can redistribute it and/or
     * modify it under the terms of the GNU Lesser General Public
     * License as published by the Free Software Foundation; either
     * version 2.1 of the License, or (at your option) any later version.
     * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  9. pkg/spiffe/spiffe_test.go

    				TrustDomain:    "td",
    				Namespace:      "ns",
    				ServiceAccount: "sa",
    			},
    		},
    		{
    			"spiffe://td.with.dots/ns/ns.with.dots/sa/sa.with.dots",
    			&Identity{
    				TrustDomain:    "td.with.dots",
    				Namespace:      "ns.with.dots",
    				ServiceAccount: "sa.with.dots",
    			},
    		},
    		{
    			// Empty ns and sa
    			"spiffe://td/ns//sa/",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  10. src/net/http/example_filesystem_test.go

    	files, err := f.File.Readdir(n)
    	for _, file := range files { // Filters out the dot files
    		if !strings.HasPrefix(file.Name(), ".") {
    			fis = append(fis, file)
    		}
    	}
    	return
    }
    
    // dotFileHidingFileSystem is an http.FileSystem that hides
    // hidden "dot files" from being served.
    type dotFileHidingFileSystem struct {
    	http.FileSystem
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 02:32:42 UTC 2020
    - 2K bytes
    - Viewed (0)
Back to top