Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 270 for mainsail (0.13 sec)

  1. src/cmd/vendor/golang.org/x/text/unicode/norm/readwriter.go

    		if err != nil {
    			return err
    		}
    	}
    	return nil
    }
    
    // Writer returns a new writer that implements Write(b)
    // by writing f(b) to w. The returned writer may use an
    // internal buffer to maintain state across Write calls.
    // Calling its Close method writes any buffered data to w.
    func (f Form) Writer(w io.Writer) io.WriteCloser {
    	wr := &normWriter{rb: reorderBuffer{}, w: w}
    	wr.rb.init(f, nil)
    	return wr
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. src/main/assemblies/files/fess.in.sh

        FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Xmn${FESS_HEAP_NEWSIZE}"
    fi
    
    # set to headless, just in case
    FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Djava.awt.headless=true"
    
    # maximum # keep-alive connections to maintain at once
    FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Dhttp.maxConnections=20"
    
    # Force the JVM to use IPv4 stack
    if [ "x$FESS_USE_IPV4" != "x" ]; then
      FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Djava.net.preferIPv4Stack=true"
    fi
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationType.java

     *
     * The result object should convey the outcome.
     * This is information that is known after the operation is executed.
     *
     * These details and result types need to maintain backwards binary compatibility.
     * They should be interfaces with minimal dependencies, and should avoid internal Gradle types.
     * The convention for these types is to make them inner types of the BuildOperationType token type,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. code_of_conduct.md

    reported by contacting the project team at ******@****.***. The project team
    will review and investigate all complaints, and will respond in a way that it deems
    appropriate to the circumstances. The project team is obligated to maintain
    confidentiality with regard to the reporter of an incident.
    Further details of specific enforcement policies may be posted separately.
    
    Project maintainers who do not follow or enforce the Code of Conduct in good
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jan 20 18:38:58 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  5. plugin/pkg/auth/authorizer/node/graph.go

    	// destinationEdgeIndex is a map of vertex -> set of destination IDs
    	destinationEdgeIndex map[int]*intSet
    	// destinationEdgeThreshold is the minimum number of distinct destination IDs at which to maintain an index
    	destinationEdgeThreshold int
    }
    
    // namespaceVertexMapping is a map of namespace -> name -> vertex
    type namespaceVertexMapping map[string]nameVertexMapping
    
    // nameVertexMapping is a map of name -> vertex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  6. pkg/filewatcher/filewatcher.go

    	Remove(path string) error
    	Close() error
    	Events(path string) chan fsnotify.Event
    	Errors(path string) chan error
    }
    
    type fileWatcher struct {
    	mu sync.RWMutex
    
    	// The watcher maintain a map of workers,
    	// keyed by watched dir (parent dir of watched files).
    	workers map[string]*workerState
    
    	funcs *patchTable
    }
    
    type workerState struct {
    	worker *worker
    	count  int
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. manifests/charts/UPDATING-CHARTS.md

    However, that doesn't necessarily mean a PR to add a value will be accepted.
    The `values.yaml` API is intended to maintain a *minimal core set of configuration* that most users will use.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. testing/architecture-test/src/test/java/org/gradle/architecture/test/ConfigurationCreationTest.java

    public final class ConfigurationCreationTest {
    
        /**
         * This test ensures that <strong>ONLY</strong> the role-based API is used to create configurations in Gradle core plugins.
         * <p>
         * It is important to maintain this condition, because the role-based API will allow us to (eventually) split
         * the implementation of configurations into separate classes per role.  If new configurations are created using
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/fifo_list.go

    // but may not mutate the fifo in any othe way.
    type walkFunc func(*request) (ok bool)
    
    // Internal interface to abstract out the implementation details
    // of the underlying list used to maintain the requests.
    //
    // Note that a fifo, including the removeFromFIFOFuncs returned from Enqueue,
    // is not safe for concurrent use by multiple goroutines.
    type fifo interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 16:05:53 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  10. docs/en/docs/help-fastapi.md

    * To fix an existing issue/bug.
        * Make sure to add tests.
    * To add a new feature.
        * Make sure to add tests.
        * Make sure to add documentation if it's relevant.
    
    ## Help Maintain FastAPI
    
    Help me maintain **FastAPI**! 🤓
    
    There's a lot of work to do, and for most of it, **YOU** can do it.
    
    The main tasks that you can do right now are:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.7K bytes
    - Viewed (0)
Back to top