Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for open64 (0.39 sec)

  1. src/database/sql/sql.go

    }
    
    func (t dsnConnector) Connect(_ context.Context) (driver.Conn, error) {
    	return t.driver.Open(t.dsn)
    }
    
    func (t dsnConnector) Driver() driver.Driver {
    	return t.driver
    }
    
    // OpenDB opens a database using a [driver.Connector], allowing drivers to
    // bypass a string based data source name.
    //
    // Most users will open a database via a driver-specific connection
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    			}
    			klog.V(5).Infof("%v: returning: %+v", r.URL, string(keyBytes))
    			w.Write(keyBytes)
    
    		// /c/d/bar/.well-known/openid-configuration is used to test issuer url and discovery url with a path
    		case "/.well-known/openid-configuration", "/c/d/bar/.well-known/openid-configuration":
    			w.Header().Set("Content-Type", "application/json")
    			klog.V(5).Infof("%v: returning: %+v", r.URL, *openIDConfig)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  3. src/database/sql/sql_test.go

    		db.dumpDeps(t)
    	}
    
    	driver.mu.Lock()
    	opens := driver.openCount - opens0
    	closes := driver.closeCount - closes0
    	driver.mu.Unlock()
    
    	if opens > 10 {
    		t.Logf("open calls = %d", opens)
    		t.Logf("close calls = %d", closes)
    		t.Errorf("db connections opened = %d; want <= 10", opens)
    		db.dumpDeps(t)
    	}
    
    	if err := stmt.Close(); err != nil {
    		t.Fatal(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbFile.java

            }
    
            return f;
        }
        void open( int flags, int access, int attrs, int options ) throws SmbException {
            if( isOpen() ) {
                return;
            }
            fid = open0( flags, access, attrs, options );
            opened = true;
            tree_num = tree.tree_num;
        }
        boolean isOpen() {
            boolean ans = opened && isConnected() && tree_num == tree.tree_num;
            return ans;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    the key was too small, but at any rate it would not open any of
    them.  However, on the second time round, she came upon a low
    curtain she had not noticed before, and behind it was a little
    door about fifteen inches high:  she tried the little golden key
    in the lock, and to her great delight it fitted!
    
      Alice opened the door and found that it led into a small
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    the key was too small, but at any rate it would not open any of
    them.  However, on the second time round, she came upon a low
    curtain she had not noticed before, and behind it was a little
    door about fifteen inches high:  she tried the little golden key
    in the lock, and to her great delight it fitted!
    
      Alice opened the door and found that it led into a small
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  7. cmd/site-replication.go

    		LDAPGroupSearchBase:    globalIAMSys.LDAPConfig.LDAP.GroupSearchBaseDistName,
    		LDAPGroupSearchFilter:  globalIAMSys.LDAPConfig.LDAP.GroupSearchFilter,
    	}
    	s.OpenID = globalIAMSys.OpenIDConfig.GetSettings()
    	if s.OpenID.Enabled {
    		s.OpenID.Region = globalSite.Region()
    	}
    	return s
    }
    
    func (c *SiteReplicationSys) validateIDPSettings(ctx context.Context, peers []PeerSiteInfo) error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewriteWasm.go

    	case OpEq16:
    		return rewriteValueWasm_OpEq16(v)
    	case OpEq32:
    		return rewriteValueWasm_OpEq32(v)
    	case OpEq32F:
    		v.Op = OpWasmF32Eq
    		return true
    	case OpEq64:
    		v.Op = OpWasmI64Eq
    		return true
    	case OpEq64F:
    		v.Op = OpWasmF64Eq
    		return true
    	case OpEq8:
    		return rewriteValueWasm_OpEq8(v)
    	case OpEqB:
    		v.Op = OpWasmI64Eq
    		return true
    	case OpEqPtr:
    		v.Op = OpWasmI64Eq
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 108.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    	case OpEq16:
    		return rewriteValueRISCV64_OpEq16(v)
    	case OpEq32:
    		return rewriteValueRISCV64_OpEq32(v)
    	case OpEq32F:
    		v.Op = OpRISCV64FEQS
    		return true
    	case OpEq64:
    		return rewriteValueRISCV64_OpEq64(v)
    	case OpEq64F:
    		v.Op = OpRISCV64FEQD
    		return true
    	case OpEq8:
    		return rewriteValueRISCV64_OpEq8(v)
    	case OpEqB:
    		return rewriteValueRISCV64_OpEqB(v)
    	case OpEqPtr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
Back to top