Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 73 for rfind (2.35 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                if (hasProjectExpression(s)) {
                    String path = pathSupplier.get();
                    Matcher matcher = EXPRESSION_PROJECT_NAME_PATTERN.matcher(s);
                    while (matcher.find()) {
                        String propertyName = matcher.group(0);
    
                        if (path.startsWith("activation.file.") && "${project.basedir}".equals(propertyName)) {
                            continue;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  2. src/os/os_test.go

    				}
    				if !equal(m, n) {
    					continue
    				}
    				if found {
    					t.Error("present twice:", m)
    				}
    				found = true
    			}
    			if !found {
    				t.Error("could not find", m)
    			}
    		}
    		if s == nil {
    			t.Error("Readdirnames returned nil instead of empty slice")
    		}
    	}
    }
    
    func testReaddir(dir string, contents []string) func(*testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

        }
    
        def canLocateSelfAsAServiceOfTypeServiceRegistry() {
            def registry = new DefaultServiceRegistry()
    
            expect:
            registry.get(ServiceRegistry) == registry
            registry.find(DefaultServiceRegistry) == null
        }
    
        def failsWhenRegisteringAServiceOfTypeServiceRegistry() {
            def registry = new DefaultServiceRegistry()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/test/test.go

    	    element in the sequence, if any. Possible parents of matches
    	    are run with b.N=1 to identify sub-benchmarks. For example,
    	    given -bench=X/Y, top-level benchmarks matching X are run
    	    with b.N=1 to find any sub-benchmarks matching Y, which are
    	    then run in full.
    
    	-benchtime t
    	    Run enough iterations of each benchmark to take t, specified
    	    as a time.Duration (for example, -benchtime 1h30s).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/load.go

    					// or we may erroneously match packages in the wrong versions of
    					// modules. However, for cases like 'go list -e', the error should not
    					// necessarily prevent us from loading the packages we could find.
    					m.Errs = append(m.Errs, err)
    				}
    				matchPackages(ctx, m, opts.Tags, includeStd, mg.BuildList())
    
    			case m.Pattern() == "all":
    				if ld == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    			expectedSetCost:  0,
    		},
    		// Ensure library functions are integrated with size estimates by testing the interesting cases.
    		{
    			name:             "extended library regex find",
    			schemaGenerator:  genStringWithRule("self.find('[0-9]+') == ''"),
    			expectedCalcCost: 629147,
    			setMaxElements:   10,
    			expectedSetCost:  11,
    		},
    		{
    			name: "extended library join",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/runtime/framework.go

    	if plugins == nil {
    		return pgSet
    	}
    
    	find := func(pgs *config.PluginSet) {
    		for _, pg := range pgs.Enabled {
    			pgSet.Insert(pg.Name)
    		}
    	}
    
    	for _, e := range f.getExtensionPoints(plugins) {
    		find(e.plugins)
    	}
    	// Parse MultiPoint separately since they are not returned by f.getExtensionPoints()
    	find(&plugins.MultiPoint)
    
    	return pgSet
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  8. src/testing/testing.go

    // declaration, and no test or benchmark functions.
    //
    // # Fuzzing
    //
    // 'go test' and the testing package support fuzzing, a testing technique where
    // a function is called with randomly generated inputs to find bugs not
    // anticipated by unit tests.
    //
    // Functions of the form
    //
    //	func FuzzXxx(*testing.F)
    //
    // are considered fuzz tests.
    //
    // For example:
    //
    //	func FuzzHex(f *testing.F) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. cmd/xl-storage-format-v2.go

    			return x.setIdx(i, ventry)
    		}
    	}
    
    	// We did not find it, add it.
    	return x.addVersion(ventry)
    }
    
    func (x *xlMetaV2) SharedDataDirCount(versionID [16]byte, dataDir [16]byte) int {
    	// v2 object is inlined, if it is skip dataDir share check.
    	if x.data.entries() > 0 && x.data.find(uuid.UUID(versionID).String()) != nil {
    		return 0
    	}
    	var sameDataDirCount int
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/debug.go

    						slotID := SlotID(id)
    						slotLoc := state.currentState.slots[slotID]
    						if slotLoc.absent() {
    							startState.Delete(int32(slotID))
    							continue
    						}
    						old := startState.Find(int32(slotID)) // do NOT replace existing values
    						if oldLS, ok := old.(*liveSlot); !ok || oldLS.VarLoc != slotLoc {
    							startState.Insert(int32(slotID),
    								&liveSlot{VarLoc: slotLoc})
    						}
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
Back to top