Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 108 for choosing (0.42 sec)

  1. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Codec.kt

         * Useful for bridging with non-suspending serialization protocols such as [java.io.Serializable].
         */
        var immediateMode: Boolean // TODO:configuration-cache prevent StackOverflowErrors when crossing protocols
    
        suspend fun read(): Any?
    
        fun readClass(): Class<*>
    
        /**
         * Defers the given [action] until all objects have been read.
         */
        fun onFinish(action: () -> Unit)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. src/database/sql/sql_test.go

    			// verify this is always zero here, and any
    			// other value is a leak.
    			t.Errorf("while closing db, freeConn %d/%d had %d open stmts; want 0", i, len(db.freeConn), n)
    		}
    	}
    	db.mu.Unlock()
    
    	err := db.Close()
    	if err != nil {
    		t.Fatalf("error closing DB: %v", err)
    	}
    
    	var numOpen int
    	if !waitCondition(t, func() bool {
    		numOpen = db.numOpenConns()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  3. CREDITS

    to choose that version for the Program.
    
      Later license versions may give you additional or different
    permissions.  However, no additional obligations are imposed on any
    author or copyright holder as a result of your choosing to follow a
    later version.
    
      15. Disclaimer of Warranty.
    
      THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
    APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  4. src/testing/internal/testdeps/deps.go

    	// If the worker is interrupted, return quickly and without error.
    	// If only the coordinator process is interrupted, it tells each worker
    	// process to stop by closing its "fuzz_in" pipe.
    	ctx, cancel := signal.NotifyContext(context.Background(), os.Interrupt)
    	defer cancel()
    	err := fuzz.RunFuzzWorker(ctx, fn)
    	if err == ctx.Err() {
    		return nil
    	}
    	return err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. src/go/ast/example_test.go

    	//     16  .  .  .  }
    	//     17  .  .  .  Type: *ast.FuncType {
    	//     18  .  .  .  .  Func: 3:1
    	//     19  .  .  .  .  Params: *ast.FieldList {
    	//     20  .  .  .  .  .  Opening: 3:10
    	//     21  .  .  .  .  .  Closing: 3:11
    	//     22  .  .  .  .  }
    	//     23  .  .  .  }
    	//     24  .  .  .  Body: *ast.BlockStmt {
    	//     25  .  .  .  .  Lbrace: 3:13
    	//     26  .  .  .  .  List: []ast.Stmt (len = 1) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:44:50 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/positions.go

    // For some nodes (*Name, *BasicLit) it returns the position immediately
    // following the node; for others (*BlockStmt, *SwitchStmt, etc.) it
    // returns the position of the closing '}'; and for some (*ParenExpr)
    // the returned position is the end position of the last enclosed
    // expression.
    // Thus, EndPos should not be used for exact demarcation of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 17:49:19 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. internal/logger/target/http/http.go

    	lastStarted time.Time
    
    	wg sync.WaitGroup
    
    	// Channel of log entries.
    	// Reading logCh must hold read lock on logChMu (to avoid read race)
    	// Sending a value on logCh must hold read lock on logChMu (to avoid closing)
    	logCh   chan interface{}
    	logChMu sync.RWMutex
    
    	// If this webhook is being re-configured we will
    	// assign the new webhook target to this field.
    	// The Send() method will then re-direct entries
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jun 02 03:03:39 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/watch/watch.go

    	// ResultChan returns a channel which will receive events from the event
    	// producer. If an error occurs or Stop() is called, the producer must
    	// close this channel and release any resources used by the watch.
    	// Closing the result channel tells the consumer that no more events will be
    	// sent.
    	ResultChan() <-chan Event
    }
    
    // EventType defines the possible types of events.
    type EventType string
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:06:22 UTC 2024
    - 8.1K bytes
    - Viewed (1)
  9. src/net/http/server.go

    	c.finalFlush()
    	c.rwc.Close()
    }
    
    // rstAvoidanceDelay is the amount of time we sleep after closing the
    // write side of a TCP connection before closing the entire socket.
    // By sleeping, we increase the chances that the client sees our FIN
    // and processes its final data before they process the subsequent RST
    // from closing a connection with known unread data.
    // This RST seems to occur mostly on BSD systems. (And Windows?)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. src/internal/coverage/cfile/emit.go

    	}
    
    	// Emit counter data file.
    	if err := s.emitCounterDataFile(finalHash, s.cf); err != nil {
    		return err
    	}
    	if err := s.cf.Close(); err != nil {
    		return fmt.Errorf("closing counter data file: %v", err)
    	}
    
    	// Counter file has now been closed. Rename the temp to the
    	// final desired path.
    	if err := os.Rename(s.cftmp, s.cfname); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top