Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 73 for rfind (1.07 sec)

  1. cmd/api-errors.go

    	},
    	ErrParseExpectedDatePart: {
    		Code:           "ParseExpectedDatePart",
    		Description:    "Did not find the expected date part in the SQL expression.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrParseExpectedKeyword: {
    		Code:           "ParseExpectedKeyword",
    		Description:    "Did not find the expected keyword in the SQL expression.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (1)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

            failure.assertHasCause("Could not resolve project :b.")
            failure.assertHasCause("""No matching variant of project :b was found. The consumer was configured to find attribute 'buildType' with value 'debug', attribute 'flavor' with value 'free' but:
      - Variant 'bar':
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

        }
    
        @Override
        public Object find(Type serviceType) throws ServiceLookupException {
            assertValidServiceType(unwrap(serviceType));
            Service provider = getService(serviceType);
            return provider == null ? null : provider.get();
        }
    
        @Nullable
        private Service getService(Type serviceType) {
            serviceRequested();
            return find(serviceType, allServices);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. src/cmd/cgo/gcc.go

    			// For FooRef, find out if FooGetTypeID exists.
    			s := n.C[:len(n.C)-3] + "GetTypeID"
    			n := &Name{Go: s, C: s}
    			names = append(names, n)
    			optional[n] = true
    		}
    
    		// Otherwise, we'll need to find out from gcc.
    		names = append(names, n)
    	}
    
    	// Bypass gcc if there's nothing left to find out.
    	if len(names) == 0 {
    		return needType
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  5. src/cmd/go/go_test.go

    	tg := testgo(t)
    	defer tg.cleanup()
    	tg.parallel()
    	tg.runFail("install", "foo/quxx")
    	if tg.grepCountBoth(`cannot find package "foo/quxx" in any of`) != 1 {
    		t.Error(`go install foo/quxx expected error: .*cannot find package "foo/quxx" in any of`)
    	}
    }
    
    func TestGOROOTSearchFailureReporting(t *testing.T) {
    	tg := testgo(t)
    	defer tg.cleanup()
    	tg.parallel()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  6. src/go/build/build.go

    // importGo checks whether it can use the go command to find the directory for path.
    // If using the go command is not appropriate, importGo returns errNoModules.
    // Otherwise, importGo tries using the go command and reports whether that succeeded.
    // Using the go command lets build.Import and build.Context.Import find code
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/init.go

    			if cfg.ModFile != "" {
    				base.Fatalf("go: cannot find main module, but -modfile was set.\n\t-modfile cannot be used to set the module root directory.")
    			}
    			if RootMode == NeedRoot {
    				base.Fatal(ErrNoModRoot)
    			}
    			if !mustUseModules {
    				// GO111MODULE is 'auto', and we can't find a module root.
    				// Stay in GOPATH mode.
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  8. src/runtime/mheap.go

    		// just come with a performance cost.
    		base, _ = h.pages.find(npages + extraPages)
    		if base == 0 {
    			var ok bool
    			growth, ok = h.grow(npages + extraPages)
    			if !ok {
    				unlock(&h.lock)
    				return nil
    			}
    			base, _ = h.pages.find(npages + extraPages)
    			if base == 0 {
    				throw("grew heap, but no adequate free space found")
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  9. src/cmd/dist/build.go

    	"js",
    	"wasip1",
    	"linux",
    	"android",
    	"solaris",
    	"freebsd",
    	"nacl", // keep;
    	"netbsd",
    	"openbsd",
    	"plan9",
    	"windows",
    	"aix",
    }
    
    // find reports the first index of p in l[0:n], or else -1.
    func find(p string, l []string) int {
    	for i, s := range l {
    		if p == s {
    			return i
    		}
    	}
    	return -1
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      indices.reserve(tensor_names.size());
    
      for (const auto& name : tensor_names) {
        auto found = name_to_index.find(name);
        if (found != name_to_index.end()) {
          indices.push_back(found->second);
        } else {
          return errors::InvalidArgument("could not find tensor in subgraph: ",
                                         name);
        }
      }
    
      return indices;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
Back to top