Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 150 for getPids (0.41 sec)

  1. pkg/kubelet/container/runtime_cache.go

    import (
    	"context"
    	"sync"
    	"time"
    )
    
    // RuntimeCache is in interface for obtaining cached Pods.
    type RuntimeCache interface {
    	GetPods(context.Context) ([]*Pod, error)
    	ForceUpdateIfOlder(context.Context, time.Time) error
    }
    
    type podsGetter interface {
    	GetPods(context.Context, bool) ([]*Pod, error)
    }
    
    // NewRuntimeCache creates a container runtime cache.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 04:03:51 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/tasks/SourceSetOutput.java

     *     def generated = resourcesDir.file("myGeneratedResource.properties").get().asFile
     *     generated.text = "message=Stay happy!"
     *   }
     * }
     * </pre>
     *
     * Find more information in {@link #dir(Object)} and {@link #getDirs()}
     */
    public interface SourceSetOutput extends FileCollection {
    
        /**
         * Returns the directories containing compiled classes.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. tensorflow/c/eager/gradient_checker.cc

               int32_t step = 1) {
      for (int32_t i = start; i < end; i += step) {
        (*data)[i] = i;
      }
    }
    
    // Fills out_dims with the dimensions of the given tensor.
    void GetDims(const TF_Tensor* t, int64_t* out_dims) {
      int num_dims = TF_NumDims(t);
      for (int i = 0; i < num_dims; i++) {
        out_dims[i] = TF_Dim(t, i);
      }
    }
    
    // Runs model as is if output is a scalar,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/topologymanager/bitmask/bitmask.go

    }
    
    // Count counts number of bits in mask set to one
    func (s *bitMask) Count() int {
    	return bits.OnesCount64(uint64(*s))
    }
    
    // Getbits returns each bit number with bits set to one
    func (s *bitMask) GetBits() []int {
    	var bits []int
    	for i := uint64(0); i < 64; i++ {
    		if (*s & (1 << i)) > 0 {
    			bits = append(bits, int(i))
    		}
    	}
    	return bits
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:09 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequest.java

            return functionScoreQueryBuilder;
        }
    
        protected SuggestResponse createResponse(final SearchResponse searchResponse) {
            final SearchHit[] hits = searchResponse.getHits().getHits();
            final List<String> words = new ArrayList<>();
            final List<String> firstWords = new ArrayList<>();
            final List<String> secondWords = new ArrayList<>();
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. fess-crawler-es/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java

            });
            String scrollId = response.getScrollId();
            try {
                while (scrollId != null) {
                    final SearchHits searchHits = response.getHits();
                    if (searchHits.getHits().length == 0) {
                        break;
                    }
    
                    final BulkResponse bulkResponse = getClient().get(c -> {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Apr 04 09:58:36 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/DefaultFlatDirArtifactRepository.java

        }
    
        @Override
        public String getDisplayName() {
            Set<File> dirs = getDirs();
            if (dirs.isEmpty()) {
                return super.getDisplayName();
            }
            return super.getDisplayName() + '(' + Joiner.on(", ").join(dirs) + ')';
        }
    
        @Override
        public Set<File> getDirs() {
            return fileCollectionFactory.resolving(dirs).getFiles();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/AbstractLinkTask.java

        }
    
        /**
         * The library files to be passed to the linker.
         */
        @PathSensitive(PathSensitivity.RELATIVE)
        @InputFiles
        public ConfigurableFileCollection getLibs() {
            return libs;
        }
    
        public void setLibs(FileCollection libs) {
            this.libs.setFrom(libs);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.SourceSetOutput.xml

                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>dir</td>
                </tr>
                <tr>
                    <td>getDirs</td>
                </tr>
            </table>
        </section>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/descriptor/FlatDirRepositoryDescriptor.java

            super(backingDescriptor.getId(), name);
            this.dirs = ImmutableList.copyOf(dirs);
            this.backingDescriptor = backingDescriptor;
        }
    
        @Override
        public Type getType() {
            return Type.FLAT_DIR;
        }
    
        public ImmutableList<File> getDirs() {
            return dirs;
        }
    
        public IvyRepositoryDescriptor getBackingDescriptor() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top