Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 137 for getNodes (0.16 sec)

  1. pkg/kubelet/apis/podresources/server_v1_test.go

    			mockMemoryProvider := podresourcetest.NewMockMemoryProvider(mockCtrl)
    			mockDynamicResourcesProvider := podresourcetest.NewMockDynamicResourcesProvider(mockCtrl)
    
    			mockPodsProvider.EXPECT().GetPods().Return(tc.pods).AnyTimes()
    			mockDevicesProvider.EXPECT().GetDevices(string(podUID), containerName).Return(tc.devices).AnyTimes()
    			mockCPUsProvider.EXPECT().GetCPUs(string(podUID), containerName).Return(tc.cpus).AnyTimes()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 45.9K bytes
    - Viewed (0)
  2. maven-api-impl/src/test/java/org/apache/maven/internal/impl/standalone/ApiRunner.java

                HashMap<String, String> result = new HashMap<>(getSystemProperties());
                if (project != null) {
                    result.putAll(project.getModel().getProperties());
                }
                result.putAll(getUserProperties());
                return result;
            }
    
            @Override
            public Version getMavenVersion() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_builder.go

    	util.AddSubsetToMetadata(subsetCluster.cluster.Metadata, subset.Name)
    	subsetCluster.cluster.Metadata = util.AddALPNOverrideToMetadata(subsetCluster.cluster.Metadata, opts.policy.GetTls().GetMode())
    	return subsetCluster.build()
    }
    
    // applyDestinationRule applies the destination rule if it exists for the Service.
    // It returns the subset clusters if any created as it applies the destination rule.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

            for (ModelData currentData = resultData; ; ) {
                String modelId = currentData.getId();
                result.addModelId(modelId);
    
                Model model = currentData.getModel();
                result.setRawModel(modelId, model);
                problems.setSource(model);
                org.apache.maven.api.model.Model modelv4 = model.getDelegate();
    
                // model normalization
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  5. pilot/pkg/model/gateway.go

    				if gatewayConfig.Namespace == proxy.VerifiedIdentity.Namespace && parse.Namespace == proxy.VerifiedIdentity.Namespace {
    					// Same namespace is always allowed
    					verifiedCertificateReferences.Insert(rn)
    					if s.GetTls().GetMode() == networking.ServerTLSSettings_MUTUAL {
    						verifiedCertificateReferences.Insert(rn + credentials.SdsCaSuffix)
    					}
    				} else if ps.ReferenceAllowed(gvk.Secret, rn, proxy.VerifiedIdentity.Namespace) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultCacheCoordinator.java

            Consumer<FileLock> onFileLockAcquireAction = this::afterLockAcquire;
            Consumer<FileLock> onFileLockReleaseAction = this::beforeLockRelease;
    
            switch (lockOptions.getMode()) {
                case Shared:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 01 12:21:15 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_collective.cc

        }
    
        int64_t channel_id = channel_id_++;
        return ConvertAllReduce(rewriter, channel_id, all_reduce.getType(),
                                replica_groups, all_reduce.getMode(),
                                all_reduce.getInput(), merge_op, final_op,
                                all_reduce);
      }
    };
    
    // Converts CollectiveReduceV2, with or without a preceding
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            this.rootComponentMetadataBuilder = rootComponentMetadataBuilder;
            this.currentResolveState = domainObjectContext.getModel().newCalculatedValue(Optional.empty());
            this.defaultConfigurationFactory = defaultConfigurationFactory;
    
            this.canBeConsumed = roleAtCreation.isConsumable();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/ReactorReader.java

        }
    
        @Override
        public Model findModel(Artifact artifact) {
            MavenProject project = getProject(artifact);
            return project == null ? null : project.getModel().getDelegate();
        }
    
        //
        // Implementation
        //
    
        private File findArtifact(MavenProject project, Artifact artifact) {
            // POMs are always returned from the file system
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods.go

    // those pods during admission may still be in use. See
    // https://github.com/kubernetes/kubernetes/issues/104824
    func (kl *Kubelet) GetActivePods() []*v1.Pod {
    	allPods := kl.podManager.GetPods()
    	activePods := kl.filterOutInactivePods(allPods)
    	return activePods
    }
    
    // makeBlockVolumes maps the raw block devices specified in the path of the container
    // Experimental
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top