Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 156 for opens (0.24 sec)

  1. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

                this.showWeekNumbers =...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    ```
    tasks.withType(Test).configureEach {
        jvmArgs(["--add-opens=java.base/java.lang=ALL-UNNAMED",
                 "--add-opens=java.base/java.util=ALL-UNNAMED"]
    }
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    }
    
    // SetupDiOpenDevRegKey function opens a registry key for device-specific configuration information.
    //sys	SetupDiOpenDevRegKey(deviceInfoSet DevInfo, deviceInfoData *DevInfoData, Scope DICS_FLAG, HwProfile uint32, KeyType DIREG, samDesired uint32) (key Handle, err error) [failretval==InvalidHandle] = setupapi.SetupDiOpenDevRegKey
    
    // OpenDevRegKey method opens a registry key for device-specific configuration information.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  4. src/net/http/fs_test.go

    			t.Errorf("redirect from %s: got %s, want %s", data.original, g, e)
    		}
    	}
    }
    
    type testFileSystem struct {
    	open func(name string) (File, error)
    }
    
    func (fs *testFileSystem) Open(name string) (File, error) {
    	return fs.open(name)
    }
    
    func TestFileServerCleans(t *testing.T) {
    	defer afterTest(t)
    	ch := make(chan string, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    // objects and to control the ability of the user to perform various
    // system-related operations on the local computer.
    type Token Handle
    
    // OpenCurrentProcessToken opens an access token associated with current
    // process with TOKEN_QUERY access. It is a real token that needs to be closed.
    //
    // Deprecated: Explicitly call OpenProcessToken(CurrentProcess(), ...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_server_test.go

    	// If false, runServerTest* returns immediately.
    	wait bool
    }
    
    var defaultClientCommand = []string{"openssl", "s_client", "-no_ticket"}
    
    // connFromCommand starts opens a listening socket and starts the reference
    // client to connect to it. It returns a recordingConn that wraps the resulting
    // connection.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  7. src/net/http/request.go

    		// address such as Unix domain socket path into a valid, ignored
    		// Host header (see https://go.dev/issue/61431).
    		//
    		// We don't preserve the truncation, because sending an altered
    		// header field opens a smuggling vector. Instead, zero out the
    		// Host header entirely if it isn't valid. (An empty Host is valid;
    		// see RFC 9112 Section 3.2.)
    		//
    		// Return an error if we're sending to a proxy, since the proxy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    A task named `openVisualStudio` is also created by the `visual-studio` plugin when the project is the root project. This task generates the Visual Studio solution and then opens the solution in Visual Studio. This means you can simply run `gradlew openVisualStudio` from the root project to generate and open the Visual Studio solution in one convenient step.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  9. src/runtime/traceback.go

    					// about to return. Just unwind normally.
    					// Do this only on LR machines because on x86
    					// systemstack doesn't have an SP delta (the CALL
    					// instruction opens the frame), therefore no way
    					// to check.
    					flag &^= abi.FuncFlagSPWrite
    					break
    				}
    				gp = gp.m.curg
    				u.g.set(gp)
    				frame.sp = gp.sched.sp
    				u.cgoCtxt = len(gp.cgoCtxt) - 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. src/go/build/build.go

    }
    
    // openFile calls ctxt.OpenFile (if not nil) or else os.Open.
    func (ctxt *Context) openFile(path string) (io.ReadCloser, error) {
    	if fn := ctxt.OpenFile; fn != nil {
    		return fn(path)
    	}
    
    	f, err := os.Open(path)
    	if err != nil {
    		return nil, err // nil interface
    	}
    	return f, nil
    }
    
    // isFile determines whether path is a file by trying to open it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
Back to top