Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 7,641 for valve (0.05 sec)

  1. src/main/java/org/codelibs/fess/tomcat/valve/SuppressErrorReportValve.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.tomcat.valve;
    
    import org.apache.catalina.valves.ErrorReportValve;
    
    public class SuppressErrorReportValve extends ErrorReportValve {
        public SuppressErrorReportValve() {
            setShowReport(false);
            setShowServerInfo(false);
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 891 bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/FessBoot.java

            final String value = System.getProperty(FESS_PORT);
            if (value != null) {
                return Integer.parseInt(value);
            }
            return 8080;
        }
    
        protected static String getContextPath() {
            final String value = System.getProperty(FESS_CONTEXT_PATH);
            if (value != null && !"/".equals(value)) {
                return value;
            }
            return StringUtil.EMPTY;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. src/sync/atomic/value.go

    package atomic
    
    import (
    	"unsafe"
    )
    
    // A Value provides an atomic load and store of a consistently typed value.
    // The zero value for a Value returns nil from [Value.Load].
    // Once [Value.Store] has been called, a Value must not be copied.
    //
    // A Value must not be copied after first use.
    type Value struct {
    	v any
    }
    
    // efaceWords is interface{} internal representation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:48:55 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. src/runtime/metrics/value.go

    	KindFloat64Histogram
    )
    
    // Value represents a metric value returned by the runtime.
    type Value struct {
    	kind    ValueKind
    	scalar  uint64         // contains scalar values for scalar Kinds.
    	pointer unsafe.Pointer // contains non-scalar values.
    }
    
    // Kind returns the tag representing the kind of value this is.
    func (v Value) Kind() ValueKind {
    	return v.kind
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:59:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. src/internal/trace/value.go

    package trace
    
    import "fmt"
    
    // Value is a dynamically-typed value obtained from a trace.
    type Value struct {
    	kind   ValueKind
    	scalar uint64
    }
    
    // ValueKind is the type of a dynamically-typed value from a trace.
    type ValueKind uint8
    
    const (
    	ValueBad ValueKind = iota
    	ValueUint64
    )
    
    // Kind returns the ValueKind of the value.
    //
    // It represents the underlying structure of the value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. test/typeparam/value.go

    package main
    
    import "fmt"
    
    type value[T any] struct {
    	val T
    }
    
    func get[T any](v *value[T]) T {
    	return v.val
    }
    
    func set[T any](v *value[T], val T) {
    	v.val = val
    }
    
    func (v *value[T]) set(val T) {
    	v.val = val
    }
    
    func (v *value[T]) get() T {
    	return v.val
    }
    
    func main() {
    	var v1 value[int]
    	set(&v1, 1)
    	if got, want := get(&v1), 1; got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/empty-value-attr.pbtxt

          attr {
            key: "dtype"
            value {
              type: DT_FLOAT
            }
          }
          attr {
            key: "value"
            value {
              tensor {
                dtype: DT_FLOAT
                tensor_shape {
                }
                float_val: 7
              }
            }
          }
        }
        ret {
          key: "constant"
          value: "X:output:0"
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 11 19:14:04 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_fuzz_minimize_interesting.txt

    [short] skip
    [!fuzz-instrumented] skip
    
    # Test that when an interesting value is discovered (one that expands coverage),
    # the fuzzing engine minimizes it before writing it to the cache.
    #
    # The program below starts with a seed value of length 100, but more coverage
    # will be found for any value other than the seed. We should end with a value
    # in the cache of length 1 (the minimizer currently does not produce empty
    # strings). check_cache.go confirms that.
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:32 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_fuzz_minimize_dirty_cov.txt

    # is unable to actually minimize the input. We do this by checking that
    # an expected value appears in the cache. If a dirty coverage map is used
    # (i.e. the coverage map generated during the last minimization step,
    # rather than the map provided with the initial input) then this value
    # is unlikely to appear in the cache, since the map generated during
    # the last minimization step should not increase the coverage.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. pkg/bootstrap/option/instances.go

    	return newOptionOrSkipIfZero("pilot_grpc_address", value).withConvert(addressConverter(value))
    }
    
    func ZipkinAddress(value string) Instance {
    	return newOptionOrSkipIfZero("zipkin", value).withConvert(addressConverter(value))
    }
    
    func DataDogAddress(value string) Instance {
    	return newOptionOrSkipIfZero("datadog", value).withConvert(addressConverter(value))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top