Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 114 for findIn (0.32 sec)

  1. tests/query_test.go

    	if (len(users1) != len(users4)) || (len(users1)-len(users2) != 3) || (len(users1)-len(users3) != 5) {
    		t.Errorf("Offset should work")
    	}
    
    	DB.Where("name like ?", "OffsetUser%").Order("age desc").Find(&users1).Offset(3).Find(&users2).Offset(5).Find(&users3).Offset(-1).Find(&users4)
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/ldap/LdapManager.java

        protected LdapUser createLdapUser(final String username, final Hashtable<String, String> env) {
            return new LdapUser(env, username);
        }
    
        public String[] getRoles(final LdapUser ldapUser, final String bindDn, final String accountFilter, final String groupFilter,
                final Consumer<String[]> lazyLoading) {
            final SystemHelper systemHelper = ComponentUtil.getSystemHelper();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  3. pkg/controller/volume/persistentvolume/pv_controller.go

    	}
    	return plugin, class, nil
    }
    
    // findDeletablePlugin finds a deleter plugin for a given volume. It returns
    // either the deleter plugin or nil when an external deleter is requested.
    func (ctrl *PersistentVolumeController) findDeletablePlugin(volume *v1.PersistentVolume) (vol.DeletableVolumePlugin, error) {
    	// Find a plugin. Try to find the same plugin that provisioned the volume
    	var plugin vol.DeletableVolumePlugin
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      for (const auto& cluster : clusters) {
        if (has_successors.find(cluster) == has_successors.end()) {
          stack.push_back({cluster, false});
        }
      }
      while (!stack.empty()) {
        const Work item = stack.back();
        stack.pop_back();
        if (item.leave) {
          sorted->push_back(item.cluster);
          continue;
        }
    
        if (visited.find(item.cluster) != visited.end()) continue;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  5. src/runtime/mgcscavenge.go

    	// scavenge. It is a hint to the find operation to avoid O(n^2) behavior in repeated lookups.
    	//
    	// searchAddr* is always inclusive and should be the base address of the highest runtime
    	// page available for scavenging.
    	//
    	// searchAddrForce is managed by find and free.
    	// searchAddrBg is managed by find and nextGen.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  6. src/go/build/build.go

    	// Import returns an error if it finds a comment it cannot understand
    	// or finds conflicting comments in multiple source files.
    	// See golang.org/s/go14customimport for more information.
    	ImportComment
    
    	// By default, Import searches vendor directories
    	// that apply in the given source directory before searching
    	// the GOROOT and GOPATH roots.
    	// If an Import finds and returns a package using a vendor
    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. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    				if(!obj || obj === -1) { obj = this.get_container_ul(); }
    				if(original_obj) {
    					obj = obj.find("li.jstree-closed");
    				}
    				else {
    					original_obj = obj;
    					if(obj.is(".jstree-closed")) { obj = obj.find("li.jstree-closed").addBack(); }
    					else { obj = obj.find("li.jstree-closed"); }
    				}
    				var _this = this;
    				obj.each(function () {
    					var __this = this;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

            val samResolver = FirSamResolver(firSession, analysisSession.getScopeSessionFor(firSession))
    
            return samResolver.getSamConstructor(fir)?.symbol
        }
    
        /**
         * Finds constructors with a given [targetClassName] available within the [scope], including SAM constructors
         * (which are not explicitly declared in the class).
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  9. 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)
  10. tensorflow/c/eager/c_api_test.cc

        ASSERT_EQ(TF_OK, TF_GetCode(status.get())) << TF_Message(status.get());
        string device_name(dev);
        if (device_name.find("GPU:0") != string::npos) {
          has_gpu0 = true;
        }
        if (device_name.find("GPU:1") != string::npos) {
          has_gpu1 = true;
        }
      }
    
      const char* kCPUDevice = "CPU:0";
      if (!has_gpu0 || !has_gpu1) {
        TF_DeleteDeviceList(devices);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
Back to top