Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 2,345 for add (0.01 sec)

  1. compat/maven-compat/src/main/java/org/apache/maven/project/interpolation/StringSearchModelInterpolator.java

                                                            c.add(interpolated);
                                                        } else {
                                                            c.add(value);
                                                        }
                                                    } else {
                                                        c.add(value);
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/ztunnelserver.go

    	}
    	uid := string(pod.ObjectMeta.UID)
    
    	add := &zdsapi.AddWorkload{
    		WorkloadInfo: podToWorkload(pod),
    		Uid:          uid,
    	}
    	r := &zdsapi.WorkloadRequest{
    		Payload: &zdsapi.WorkloadRequest_Add{
    			Add: add,
    		},
    	}
    	log := log.WithLabels(
    		"uid", add.Uid,
    		"name", add.WorkloadInfo.Name,
    		"namespace", add.WorkloadInfo.Namespace,
    		"serviceAccount", add.WorkloadInfo.ServiceAccount,
    	)
    
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Jul 29 16:08:35 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  3. cni/pkg/nodeagent/server.go

    	}
    
    	// ipset is only relevant for pod healthchecks.
    	// therefore, if we had *any* error adding the pod to the mesh
    	// do not add the pod to the ipset, so that it will definitely *not* pass healthchecks,
    	// and the operator can investigate.
    	//
    	// This is also important to avoid ipset sync issues if we add the pod ip to the ipset, but
    	// enrolling fails because ztunnel (or the pod netns, or whatever) isn't ready yet,
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Sep 25 20:54:34 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/systeminfo/AdminSysteminfoAction.java

                itemList.add(createItem(entry.getKey(), entry.getValue()));
            }
            return itemList;
        }
    
        public static List<Map<String, String>> getPropItems() {
            final List<Map<String, String>> itemList = new ArrayList<>();
            for (final Map.Entry<Object, Object> entry : System.getProperties().entrySet()) {
                itemList.add(createItem(entry.getKey(), entry.getValue()));
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. tensorflow/c/c_test_util.h

                              const char* name = "scalar");
    
    TF_Operation* Add(TF_Operation* l, TF_Operation* r, TF_Graph* graph,
                      TF_Status* s, const char* name = "add");
    
    TF_Operation* AddNoCheck(TF_Operation* l, TF_Operation* r, TF_Graph* graph,
                             TF_Status* s, const char* name = "add");
    
    TF_Operation* AddWithCtrlDependency(TF_Operation* l, TF_Operation* r,
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Thu Aug 09 01:06:53 UTC 2018
    - 6K bytes
    - Viewed (0)
  6. compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionNode.java

            this.artifact = artifact;
            this.remoteRepositories = remoteRepositories;
            depth = parent.depth + 1;
            parents = new ArrayList<>();
            parents.addAll(parent.parents);
            parents.add(parent.getKey());
            this.parent = parent;
        }
    
        public Artifact getArtifact() {
            return artifact;
        }
    
        public Object getKey() {
            return artifact.getDependencyConflictId();
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/filter/impl/UrlFilterImpl.java

                if (logger.isWarnEnabled()) {
                    logger.warn("Invalid exclude pattern: {}", urlPattern);
                }
                return;
            }
            if (sessionId == null) {
                cachedExcludeSet.add(urlPattern);
            } else {
                getUrlFilterService().addExcludeUrlFilter(sessionId, urlPattern);
            }
        }
    
        /*
         * (non-Javadoc)
         *
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:47:32 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractBehavior.java

                    }
                    bulkBuilder.add((IndexRequestBuilder) builder);
                } else if (builder instanceof UpdateRequestBuilder) {
                    if (builderEntityCall != null) {
                        builderEntityCall.callback(builder);
                    }
                    bulkBuilder.add((UpdateRequestBuilder) builder);
                } else if (builder instanceof DeleteRequestBuilder) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/AbstractCache.java

          CacheStats otherStats = other.snapshot();
          hitCount.add(otherStats.hitCount());
          missCount.add(otherStats.missCount());
          loadSuccessCount.add(otherStats.loadSuccessCount());
          loadExceptionCount.add(otherStats.loadExceptionCount());
          totalLoadTime.add(otherStats.totalLoadTime());
          evictionCount.add(otherStats.evictionCount());
        }
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 9.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ForwardingList.java

      }
    
      /**
       * A sensible default implementation of {@link #add(Object)}, in terms of {@link #add(int,
       * Object)}. If you override {@link #add(int, Object)}, you may wish to override {@link
       * #add(Object)} to forward to this implementation.
       *
       * @since 7.0
       */
      protected boolean standardAdd(@ParametricNullness E element) {
        add(size(), element);
        return true;
      }
    
      /**
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top