Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 538 for opform (0.2 sec)

  1. guava/src/com/google/common/io/PatternFilenameFilter.java

       * return type is plain FilenameFilter. If we made such a change, then the annotation we choose
       * here would have no significance to end users, who would be forced to conform to the signature
       * used in FilenameFilter.)
       */
      @Override
      public boolean accept(File dir, String fileName) {
        return pattern.matcher(fileName).matches();
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. src/runtime/env_plan9.go

    // string array envs, to supply the initial contents for os.Environ.
    // Subsequent calls to os.Setenv will change this cache, without writing back
    // to the (possibly shared) Plan 9 environment, so that Setenv and Getenv
    // conform to the same Posix semantics as on other operating systems.
    // For Plan 9 shared environment semantics, instead of Getenv(key) and
    // Setenv(key, value), one can use os.ReadFile("/env/" + key) and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 02:39:39 UTC 2022
    - 3K bytes
    - Viewed (0)
  3. pkg/apis/node/types.go

    	// equivalent on every node.
    	// For example, a handler called "runc" might specify that the runc OCI
    	// runtime (using native Linux containers) will be used to run the containers
    	// in a pod.
    	// The Handler must conform to the DNS Label (RFC 1123) requirements, and is
    	// immutable.
    	Handler string
    
    	// overhead represents the resource overhead associated with running a pod for a
    	// given RuntimeClass. For more details, see
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 22 08:59:25 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/suggest/converter/KatakanaConverter.java

             * args.put("userDictionaryEncoding", encoding); } final JapaneseTokenizerFactory japaneseTokenizerFactory = new
             * JapaneseTokenizerFactory(args); // TODO japaneseTokenizerFactory.inform(new FilesystemResourceLoader());
             * tokenizerFactory = japaneseTokenizerFactory; } initialized = true;
             */
        }
    
        @Override
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/go/GoAction.java

                    clickLog.setQueryRequestedAt(DfTypeUtil.toLocalDateTime(Long.parseLong(form.rt)));
                    clickLog.setUserSessionId(userSessionId);
                    clickLog.setDocId(form.docId);
                    clickLog.setQueryId(form.queryId);
                    if (form.order != null) {
                        clickLog.setOrder(form.order);
                    }
                    searchLogHelper.addClickLog(clickLog);
                }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/results/StateTrackingTestResultProcessor.java

                        testId, executing.keySet()));
            }
    
            //In case the output event arrives after completion of the test
            //and we need to have a matching descriptor to inform the user which test this output belongs to
            //we will use the current parent
    
            //(SF) This approach should generally work because at the moment we reset capturing output per suite
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/apiclient/clientbacked_dryrun.go

    	unstructuredObj, err := clg.dynamicClient.Resource(action.GetResource()).Namespace(action.GetNamespace()).Get(context.TODO(), action.GetName(), metav1.GetOptions{})
    	if err != nil {
    		// Inform the user that the requested object wasn't found.
    		printIfNotExists(err)
    		return true, nil, err
    	}
    	newObj, err := decodeUnstructuredIntoAPIObject(action, unstructuredObj)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 16 10:29:45 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/tooling/provider/model/ParameterizedToolingModelBuilder.java

    public interface ParameterizedToolingModelBuilder<T> extends ToolingModelBuilder {
    
        /**
         * Returns the expected type of the parameter.
         * <p>
         * <b>Contract</b>
         * <p>
         * The parameter type must conform to the following rules:
         * <ul>
         *     <li>It must be an interface.</li>
         *     <li>It must contain only getter-like and setter-like methods.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 30 12:40:59 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/node/v1/generated.proto

      // For example, a handler called "runc" might specify that the runc OCI
      // runtime (using native Linux containers) will be used to run the containers
      // in a pod.
      // The Handler must be lowercase, conform to the DNS Label (RFC 1123) requirements,
      // and is immutable.
      optional string handler = 2;
    
      // overhead represents the resource overhead associated with running a pod for a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. src/cmd/vet/doc.go

    	slog             check for invalid structured logging calls
    	stdmethods       check signature of methods of well-known interfaces
    	stringintconv    check for string(int) conversions
    	structtag        check that struct field tags conform to reflect.StructTag.Get
    	testinggoroutine report calls to (*testing.T).Fatal from goroutines started by a test
    	tests            check for common mistaken usages of tests and examples
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 00:17:30 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top