Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for valve (0.12 sec)

  1. subprojects/core/src/test/groovy/org/gradle/internal/operations/notify/BuildOperationNotificationBridgeTest.groovy

            bridge.valve.start()
            bridge.register(listener)
            bridge.register(listener)
    
            then:
            thrown IllegalStateException
        }
    
        def "can register again after resetting valve"() {
            when:
            def bridge = getOrCreateBridge()
            bridge.valve.start()
            bridge.register(listener)
            bridge.valve.stop()
            bridge.valve.start()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/operations/notify/BuildOperationNotificationBridge.java

            }
        }
    
        private State state;
    
        private final BuildOperationNotificationValve valve = new BuildOperationNotificationValve() {
            @Override
            public void start() {
                if (state != null) {
                    throw new IllegalStateException("build operation notification valve already started");
                }
    
                state = new State();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 04:43:28 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/log/slog/value.go

    // StringValue returns a new [Value] for a string.
    func StringValue(value string) Value {
    	return Value{num: uint64(len(value)), any: stringptr(unsafe.StringData(value))}
    }
    
    // IntValue returns a [Value] for an int.
    func IntValue(v int) Value {
    	return Int64Value(int64(v))
    }
    
    // Int64Value returns a [Value] for an int64.
    func Int64Value(v int64) Value {
    	return Value{num: uint64(v), any: KindInt64}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. src/internal/reflectlite/value.go

    func ValueOf(i any) Value {
    	if i == nil {
    		return Value{}
    	}
    	return unpackEface(i)
    }
    
    // assignTo returns a value v that can be assigned directly to typ.
    // It panics if v is not assignable to typ.
    // For a conversion to an interface type, target is a suggested scratch space to use.
    func (v Value) assignTo(context string, dst *abi.Type, target unsafe.Pointer) Value {
    	// if v.flag&flagMethod != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. internal/s3select/sql/value.go

    func FromTimestamp(t time.Time) *Value {
    	return &Value{value: t}
    }
    
    // FromNull creates a Value with Null value
    func FromNull() *Value {
    	return &Value{value: nil}
    }
    
    // FromMissing creates a Value with Missing value
    func FromMissing() *Value {
    	return &Value{value: Missing{}}
    }
    
    // FromBytes creates a Value from a []byte
    func FromBytes(b []byte) *Value {
    	return &Value{value: b}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 25 20:31:19 UTC 2022
    - 20.2K bytes
    - Viewed (0)
  8. 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)
  9. staging/src/k8s.io/apiserver/pkg/cel/value.go

    func (dv *DynValue) ExprValue() ref.Val {
    	return dv.exprValue
    }
    
    // Value returns the underlying value held by this reference.
    func (dv *DynValue) Value() interface{} {
    	return dv.value
    }
    
    // SetValue updates the underlying value held by this reference.
    func (dv *DynValue) SetValue(value interface{}) error {
    	dv.value = value
    	var err error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 20.5K bytes
    - Viewed (0)
  10. tensorflow/cc/experimental/libtf/value.h

          // initialized value.
          type_ = NONE;
        }
      }
      ~TaggedValue() { destroy(); }
    
      /// @brief Get the underlying value based on type.
      ///
      /// @tparam T The desired return type.
      /// @return The unwrapped value. If this `TaggedValue` type does not currently
      ///         contain a value of type `T`, the program terminates via a call to
      ///         `assert`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:23:45 UTC 2024
    - 20.4K bytes
    - Viewed (0)
Back to top