Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 52 for recursion (0.24 sec)

  1. src/go/types/expr.go

    				check.error(e, InvalidTypeCycle, "invalid recursive type")
    				goto Error
    			}
    			check.indexedElts(e.Elts, utyp.elem, -1)
    
    		case *Map:
    			// Prevent crash if the map referred to is not yet set up.
    			// See analogous comment for *Array.
    			if utyp.key == nil || utyp.elem == nil {
    				check.error(e, InvalidTypeCycle, "invalid recursive type")
    				goto Error
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	storageOpts := storage.ListOptions{
    		ResourceVersion:      options.ResourceVersion,
    		ResourceVersionMatch: options.ResourceVersionMatch,
    		Predicate:            p,
    		Recursive:            true,
    	}
    
    	// if we're not already namespace-scoped, see if the field selector narrows the scope of the watch
    	if requestNamespace, _ := genericapirequest.NamespaceFrom(ctx); len(requestNamespace) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/expr.go

    				check.error(e, InvalidTypeCycle, "invalid recursive type")
    				goto Error
    			}
    			check.indexedElts(e.ElemList, utyp.elem, -1)
    
    		case *Map:
    			// Prevent crash if the map referred to is not yet set up.
    			// See analogous comment for *Array.
    			if utyp.key == nil || utyp.elem == nil {
    				check.error(e, InvalidTypeCycle, "invalid recursive type")
    				goto Error
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         *
         * @param recursive If true, returns the tasks of this project and its subprojects.  If false, returns the tasks of
         * just this project.
         * @return A map from project to a set of tasks.
         */
        Map<Project, Set<Task>> getAllTasks(boolean recursive);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  5. cmd/erasure-server-pool.go

    		merged.forwardPast(opts.Marker)
    		defer merged.truncate(0) // Release when returning
    
    		if contextCanceled(ctx) {
    			return ListObjectsInfo{}, ctx.Err()
    		}
    
    		// Default is recursive, if delimiter is set then list non recursive.
    		objects := merged.fileInfos(bucket, prefix, delimiter)
    		loi.IsTruncated = err == nil && len(objects) > 0
    		if limitTo > 0 && len(objects) > limitTo {
    			objects = objects[:limitTo]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            checkCopiedConfiguration(configuration, copiedConfiguration, resolutionStrategyCopy)
            assert copiedConfiguration.dependencies.collect({ it.group }) == ["group1", "group2"]
        }
    
        def "can copy recursive"() {
            def resolutionStrategyCopy = Mock(ResolutionStrategyInternal)
            def configuration = prepareConfigurationForCopyTest()
    
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    		if err != nil {
    			t.Fatalf("Failed to get object: %v:", err)
    		}
    	}
    
    	listResult := &example.PodList{}
    	err = cacher.GetList(context.TODO(), "pods/ns", storage.ListOptions{
    		ResourceVersion: "1",
    		Recursive:       true,
    		Predicate: storage.SelectionPredicate{
    			Limit: 500,
    		},
    	}, listResult)
    	if !utilfeature.DefaultFeatureGate.Enabled(features.ResilientWatchCacheInitialization) {
    		if err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    	for _, fn := range fns {
    		if !fn(patchMap) {
    			return nil, mergepatch.NewErrPreconditionFailed(patchMap)
    		}
    	}
    
    	return patchMap, nil
    }
    
    // Returns a (recursive) strategic merge patch that yields modified when applied to original.
    // Including:
    // - Adding fields to the patch present in modified, missing from original
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbFile.java

         */
        public String getServer () {
            return this.fileLocator.getServer();
        }
    
    
        @Override
        public SmbWatchHandle watch ( int filter, boolean recursive ) throws CIFSException {
    
            if ( filter == 0 ) {
                throw new IllegalArgumentException("filter must not be 0");
            }
    
            if ( !isDirectory() ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  10. cmd/erasure-object.go

    		index := index
    		g.Go(func() error {
    			if onlineDisks[index] == nil {
    				return nil
    			}
    			return onlineDisks[index].Delete(ctx, bucket, pathJoin(object, dataDir), DeleteOptions{
    				Recursive: true,
    			})
    		}, index)
    	}
    
    	return reduceWriteQuorumErrs(ctx, g.Wait(), objectOpIgnoredErrs, writeQuorum)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
Back to top