Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 107 for addKind (0.23 sec)

  1. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                    builder.addTag(key);
                }
    
                builder.addKind(SuggestItem.Kind.USER.toString());
                if (ComponentUtil.getFessConfig().isSuggestSearchLog()) {
                    builder.addKind(SuggestItem.Kind.QUERY.toString());
                }
                if (ComponentUtil.getFessConfig().isSuggestDocuments()) {
                    builder.addKind(SuggestItem.Kind.DOCUMENT.toString());
                }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/proxier.go

    	vservers, err = ipvs.GetVirtualServers()
    	if err != nil {
    		logger.Error(err, "ipvs.GetVirtualServers")
    		return err
    	}
    	logger.V(5).Info("Virtual Servers after adding dummy", "count", len(vservers))
    	if len(vservers) == 0 {
    		logger.Info("Dummy VS not created", "scheduler", scheduler)
    		return fmt.Errorf("Ipvs not supported") // This is a BUG work-around
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            return new DependencyState(md, resolveState.getComponentSelectorConverter());
        }
    
        /**
         * Iterate over the dependencies originating in this node, adding them either as a 'pending' dependency
         * or adding them to the `discoveredEdges` collection (and `this.outgoingEdges`)
         */
        private void visitDependencies(ExcludeSpec resolutionFilter, Collection<EdgeState> discoveredEdges) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    			EndpointPort: 6060,
    		},
    	}
    
    	for _, wi := range []*model.WorkloadInstance{wiRatings1, wiDetails1, wiReviews1, wiReviews2, wiProduct1} {
    		ctl.workloadInstanceHandler(wi, model.EventAdd) // simulate adding a workload entry
    	}
    
    	cases := []struct {
    		name  string
    		proxy *model.Proxy
    		want  []model.ServiceTarget
    	}{
    		{
    			name:  "proxy with unspecified IP",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/buildlist.go

    			return rs, mg, rsErr
    		}
    		rs = newRS
    		mg, mgErr = rs.Graph(ctx)
    	}
    
    	return rs, mg, mgErr
    }
    
    // EditBuildList edits the global build list by first adding every module in add
    // to the existing build list, then adjusting versions (and adding or removing
    // requirements as needed) until every module in mustSelect is selected at the
    // given version.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. pkg/scheduler/internal/queue/scheduling_queue.go

    		if err != nil {
    			logger.V(4).Info("Pod doesn't exist in podLister, aborted adding it to the nominator", "pod", klog.KObj(pi.Pod))
    			return
    		}
    		if updatedPod.Spec.NodeName != "" {
    			logger.V(4).Info("Pod is already scheduled to a node, aborted adding it to the nominator", "pod", klog.KObj(pi.Pod), "node", updatedPod.Spec.NodeName)
    			return
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    For the following use cases, consider these alternatives when replacing a `beforeResolve` hook:
    
    * **Adding dependencies**: Use link:{javadocPath}/org/gradle/api/artifacts/Configuration.html#withDependencies-org.gradle.api.Action-[`withDependencies`].
    * **Changing dependency versions**: Use <<using_preferred_versions,preferred version constraints>>.
    * **Adding excludes**: Use <<component_metadata_rules.adoc#sec:component_metadata_rules,Component Metadata Rules>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Multimaps.java

       * the other.
       *
       * <p>The resulting multimap's views have iterators that don't support {@code remove()}, but all
       * other methods are supported by the multimap and its views. When adding a key that doesn't
       * satisfy the predicate, the multimap's {@code put()}, {@code putAll()}, and {@code
       * replaceValues()} methods throw an {@link IllegalArgumentException}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Multimaps.java

       * the other.
       *
       * <p>The resulting multimap's views have iterators that don't support {@code remove()}, but all
       * other methods are supported by the multimap and its views. When adding a key that doesn't
       * satisfy the predicate, the multimap's {@code put()}, {@code putAll()}, and {@code
       * replaceValues()} methods throw an {@link IllegalArgumentException}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/deadness_analysis_test.cc

      ops::Merge merge(root.WithOpName("ternary"), {predicated_true.output_true,
                                                    predicated_false.output_false});
      Output addend = ops::Placeholder(root.WithOpName("addend"), DT_FLOAT);
      Output add = ops::Add(root.WithOpName("add"), merge.output, addend);
    
      std::unique_ptr<DeadnessAnalysis> result;
      TF_ASSERT_OK(AnalyzeDeadness(root.graph(), &result));
    
      TF_ASSERT_OK_AND_ASSIGN(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
Back to top