Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,434 for onDone (0.11 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. dict */
        String ONLINE_HELP_NAME_DICT = "online.help.name.dict";
    
        /** The key of the configuration. e.g. kuromoji */
        String ONLINE_HELP_NAME_DICT_KUROMOJI = "online.help.name.dict.kuromoji";
    
        /** The key of the configuration. e.g. protwords */
        String ONLINE_HELP_NAME_DICT_PROTWORDS = "online.help.name.dict.protwords";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
  2. proguard/collect.pro

    #
    # We use -keepclassmembernames because we want for ImmutableMultimap and its
    # fields to be stripped if it's unused: -keepclassmembernames says that, *if*
    # you're keeping the fields, you need to leave their names untouched. (Anyone
    # who is using ImmutableMultimap will certainly be using its fields. So we
    # don't need to worry that an ImmutableMultimap user will have the fields
    # optimized away.)
    #
    # This configuration is untested....
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 09 00:29:01 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/UncheckedExecutionException.java

       *     cause. At the moment, you can <i>usually</i> still preserve behavior by passing an explicit
       *     {@code null} cause. Note, however, that passing an explicit {@code null} cause prevents
       *     anyone from calling {@link #initCause} later, so it is not quite equivalent to using a
       *     constructor that omits the cause.
       */
      @Deprecated
      protected UncheckedExecutionException() {}
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 17:52:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. src/internal/poll/read_test.go

    	case "darwin", "ios", "dragonfly", "freebsd", "netbsd", "openbsd":
    		ps = []string{
    			"/dev/null",
    		}
    	case "linux":
    		ps = []string{
    			"/dev/null",
    			"/proc/stat",
    			"/sys/devices/system/cpu/online",
    		}
    	}
    	nps := ps[:0]
    	for _, p := range ps {
    		f, err := os.Open(p)
    		if err != nil {
    			continue
    		}
    		f.Close()
    		nps = append(nps, p)
    	}
    	return nps
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  5. pkg/apis/core/json.go

    limitations under the License.
    */
    
    package core
    
    import "encoding/json"
    
    // This file implements json marshaling/unmarshaling interfaces on objects that are currently marshaled into annotations
    // to prevent anyone from marshaling these internal structs.
    
    var _ = json.Marshaler(&AvoidPods{})
    var _ = json.Unmarshaler(&AvoidPods{})
    
    // MarshalJSON panics to prevent marshalling of internal structs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 25 18:06:51 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  6. cluster/gce/gci/master.yaml

        permissions: 0644
        owner: root
        content: |
          [Unit]
          Description=Download and install k8s binaries and configurations
          Requires=network-online.target
          After=network-online.target
    
          [Service]
          Type=oneshot
          RemainAfterExit=yes
          ExecStartPre=/bin/mkdir -p /home/kubernetes/bin
          ExecStartPre=/bin/mount --bind /home/kubernetes/bin /home/kubernetes/bin
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 12 16:22:20 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/caching/internal/services/AbstractBuildCacheControllerFactory.java

        protected final OriginMetadataFactory originMetadataFactory;
    
        public enum BuildCacheMode {
            ENABLED, DISABLED
        }
    
        public enum RemoteAccessMode {
            ONLINE, OFFLINE
        }
    
        public AbstractBuildCacheControllerFactory(
            StartParameter startParameter,
            BuildOperationRunner buildOperationRunner,
            OriginMetadataFactory originMetadataFactory,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 17:08:26 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/HasInternalProtocol.java

     *
     * This should only be used on a type that is always assumed to also implement the internal protocol by Gradle internals.
     *
     * This exists to help anyone reading the source code realise that there is an internal component to the type.
     */
    @Retention(RetentionPolicy.SOURCE)
    @Target({ElementType.TYPE})
    public @interface HasInternalProtocol {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. testing/internal-testing/src/test/groovy/org/gradle/test/precondition/PredicateFileTest.groovy

        }
    
        def "standard implementation loads CSV correctly"() {
            when:
            PredicatesFile.checkValidNameCombinations(
                ["org.gradle.test.preconditions.UnitTestPreconditions\$Online"] as Set,
                PredicatesFile.DEFAULT_ACCEPTED_COMBINATIONS
            )
    
            then:
            noExceptionThrown()
        }
    
        private checkValidCombinations(List<String> combinations) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/quantization/ir/Passes.h

    /// passes done when lowering to express actual quantized arithmetic in a
    /// low level representation. Because it modifies the constant, it is
    /// destructive and cannot be undone.
    std::unique_ptr<OperationPass<func::FuncOp>> createConvertConstPass();
    
    //===----------------------------------------------------------------------===//
    // Registration
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 29 18:55:28 UTC 2022
    - 2.3K bytes
    - Viewed (0)
Back to top