Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 265 for recursion (0.25 sec)

  1. cmd/metacache-set_gen.go

    			}
    		case "InclDeleted":
    			z.InclDeleted, err = dc.ReadBool()
    			if err != nil {
    				err = msgp.WrapError(err, "InclDeleted")
    				return
    			}
    		case "Recursive":
    			z.Recursive, err = dc.ReadBool()
    			if err != nil {
    				err = msgp.WrapError(err, "Recursive")
    				return
    			}
    		case "Separator":
    			z.Separator, err = dc.ReadString()
    			if err != nil {
    				err = msgp.WrapError(err, "Separator")
    				return
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 19 20:23:12 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/helpers_test.go

    		"fooptr.foo",
    		"bars[*].foo",
    		"barMap[*].foo",
    		"skipRecurseStruct",   // skip recursing a struct
    		"skipRecursePointer",  // skip recursing a struct pointer
    		"skipRecurseList1",    // skip recursing a list
    		"skipRecurseList2[*]", // skip recursing list items
    		"skipRecurseMap1",     // skip recursing a map
    		"skipRecurseMap2[*]",  // skip recursing map items
    	)
    	result := allPrimitiveFieldPaths(t, expect, reflect.TypeOf(&bar{}), nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. cmd/metacache_gen.go

    				if err != nil {
    					err = msgp.WrapError(err, "status")
    					return
    				}
    				z.status = scanStatus(zb0002)
    			}
    		case "rec":
    			z.recursive, err = dc.ReadBool()
    			if err != nil {
    				err = msgp.WrapError(err, "recursive")
    				return
    			}
    		case "v":
    			z.dataVersion, err = dc.ReadUint8()
    			if err != nil {
    				err = msgp.WrapError(err, "dataVersion")
    				return
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Nov 08 18:26:08 UTC 2021
    - 10K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

            final Object recursive = dataMap.remove(getParamValue(paramMap, "field.recursive", "recursive"));
            if (recursive == null || Constants.FALSE.equalsIgnoreCase(recursive.toString())) {
                return 1L;
            }
            if (Constants.TRUE.equalsIgnoreCase(recursive.toString())) {
                return -1L;
            }
            try {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/etcd3/watcher.go

    	return wc, nil
    }
    
    func (w *watcher) createWatchChan(ctx context.Context, key string, rev int64, recursive, progressNotify bool, pred storage.SelectionPredicate) *watchChan {
    	wc := &watchChan{
    		watcher:           w,
    		key:               key,
    		initialRev:        rev,
    		recursive:         recursive,
    		progressNotify:    progressNotify,
    		internalPred:      pred,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 10:26:38 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseProjectIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        void "allows non-recursive resource filter"() {
            given:
            buildScript """
    apply plugin: 'java'
    apply plugin: 'eclipse'
    
    eclipse {
      project {
        resourceFilter {
          appliesTo = 'FOLDERS'
          type = 'INCLUDE_ONLY'
          recursive = false
          matcher {
            id = 'org.eclipse.some.custom.matcher'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  7. guava/src/com/google/common/io/MoreFiles.java

       * guarantee the security of recursive deletes. If you wish to allow the recursive deletes anyway,
       * pass {@link RecursiveDeleteOption#ALLOW_INSECURE} to this method to override that behavior.
       *
       * @throws NoSuchFileException if {@code path} does not exist <i>(optional specific exception)</i>
       * @throws InsecureRecursiveDeleteException if the security of recursive deletes can't be
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  8. cmd/metacache-server-pool.go

    	// the non-recursive scan unless explicitly requested.
    	o.IncludeDirectories = o.Separator == slashSeparator
    	if (o.Separator == slashSeparator || o.Separator == "") && !o.Recursive {
    		o.Recursive = o.Separator != slashSeparator
    		o.Separator = slashSeparator
    	} else {
    		// Default is recursive, if delimiter is set then list non recursive.
    		o.Recursive = true
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:23 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  9. cmd/metacache-set.go

    // newMetacache constructs a new metacache from the options.
    func (o listPathOptions) newMetacache() metacache {
    	return metacache{
    		id:          o.ID,
    		bucket:      o.Bucket,
    		root:        o.BaseDir,
    		recursive:   o.Recursive,
    		status:      scanStateStarted,
    		error:       "",
    		started:     UTCNow(),
    		lastHandout: UTCNow(),
    		lastUpdate:  UTCNow(),
    		ended:       time.Time{},
    		dataVersion: metacacheStreamVersion,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  10. istioctl/pkg/analyze/analyze.go

    	analysisCmd.PersistentFlags().DurationVar(&analysisTimeout, "timeout", 30*time.Second,
    		"The duration to wait before failing")
    	analysisCmd.PersistentFlags().BoolVarP(&recursive, "recursive", "R", false,
    		"Process directory arguments recursively. Useful when you want to analyze related manifests organized within the same directory.")
    	analysisCmd.PersistentFlags().BoolVar(&ignoreUnknown, "ignore-unknown", false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top