Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 35 for descriptor (0.86 sec)

  1. pkg/kubelet/eviction/eviction_manager_test.go

    	thresholdNotifier.EXPECT().Description().Return("mock thresholdNotifier").Times(1)
    	manager.thresholdNotifiers = []ThresholdNotifier{thresholdNotifier}
    
    	// The UpdateThreshold method should be called because at least notifierRefreshInterval time has passed.
    	// The Description method should be called because UpdateThreshold returned an error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      for (const auto& region_and_idx : llvm::enumerate(op.getBranches())) {
        std::string description =
            llvm::formatv("branch #{0} result", region_and_idx.index()).str();
        Operation* yield = region_and_idx.value().front().getTerminator();
        TypeRangeWithDesc branch_results{yield->getOperandTypes(), description};
        if (failed(VerifyTypeRangesAreCompatible(op, branch_results, results)))
          return failure();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //		executable), apply coverage analysis to each package matching
    //		the patterns. The default is to apply coverage analysis to
    //		packages in the main Go module. See 'go help packages' for a
    //		description of package patterns.  Sets -cover.
    //	-v
    //		print the names of packages as they are compiled.
    //	-work
    //		print the name of the temporary work directory and
    //		do not delete it when exiting.
    //	-x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. cmd/server_test.go

    	}
    }
    
    func verifyError(c *check, response *http.Response, code, description string, statusCode int) {
    	c.Helper()
    	data, err := io.ReadAll(response.Body)
    	c.Assert(err, nil)
    	errorResponse := APIErrorResponse{}
    	err = xml.Unmarshal(data, &errorResponse)
    	c.Assert(err, nil)
    	c.Assert(errorResponse.Code, code)
    	c.Assert(errorResponse.Message, description)
    	c.Assert(response.StatusCode, statusCode)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-helper.sh

      echo "KUBE_COVERAGE_FILE=\"/var/log/kubelet.cov\"" >> "${kubelet_env_file}"
    
      # Write the systemd service file for kubelet.
      cat <<EOF >/etc/systemd/system/kubelet.service
    [Unit]
    Description=Kubernetes kubelet
    Requires=network-online.target
    After=network-online.target
    
    [Service]
    Restart=always
    RestartSec=10
    EnvironmentFile=${kubelet_env_file}
    ExecStart=${kubelet_bin} \$KUBELET_OPTS
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

    \\--- org:foo:2.0
         \\--- conf (requested org:foo:1.0)
    
    org:leaf:2.0 -> org:new-leaf:77
    \\--- org:bar:1.0
         \\--- conf
    """
        }
    
        def "shows substituted modules with a custom description"() {
            given:
            mavenRepo.module("org", "foo", "1.0").publish()
            mavenRepo.module("org", "foo", "2.0").publish()
            mavenRepo.module("org", "bar", "1.0").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  7. cmd/bucket-replication.go

    		// Ignore the error, since we know the object exists and versioning prevents overwriting existing versions.
    		if isSSEC && strings.Contains(cerr.Error(), errorCodes[ErrSSEEncryptedObject].Description) {
    			rinfo.ReplicationStatus = replication.Completed
    			rinfo.ReplicationAction = replicateNone
    			goto applyAction
    		}
    		// if target returns error other than NoSuchKey, defer replication attempt
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    	if err := kl.containerRuntime.CheckpointContainer(ctx, options); err != nil {
    		return err
    	}
    
    	return nil
    }
    
    // ListMetricDescriptors gets the descriptors for the metrics that will be returned in ListPodSandboxMetrics.
    func (kl *Kubelet) ListMetricDescriptors(ctx context.Context) ([]*runtimeapi.MetricDescriptor, error) {
    	return kl.containerRuntime.ListMetricDescriptors(ctx)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        return success();
      }
    
      // Checks if the shape of `updates` is a tensor of shape
      // `indices.shape[:-1] + shape[indices.shape[-1]:]`, as described in
      // ScatterNd op description.
    
      auto outer_dims = indices_type.getRank() - 1;
      auto outermost_dim = indices_type.getDimSize(outer_dims);
      // Checks whether the first `outer_dims` dimensions of `indices` and
      // `updates` are equal.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/load/pkg.go

    					have[file] = true
    				}
    			}
    			if have[file] {
    				continue
    			}
    		}
    		files = append(files, file)
    	}
    	return files
    }
    
    // Desc returns the package "description", for use in b.showOutput.
    func (p *Package) Desc() string {
    	if p.ForTest != "" {
    		return p.ImportPath + " [" + p.ForTest + ".test]"
    	}
    	if p.Internal.ForMain != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top