Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 690 for addKind (0.33 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/dynamic_cafile_content.go

    	w, err := fsnotify.NewWatcher()
    	if err != nil {
    		return fmt.Errorf("error creating fsnotify watcher: %v", err)
    	}
    	defer w.Close()
    
    	if err = w.Add(c.filename); err != nil {
    		return fmt.Errorf("error adding watch for file %s: %v", c.filename, err)
    	}
    	// Trigger a check in case the file is updated before the watch starts.
    	c.queue.Add(workItemKey)
    
    	for {
    		select {
    		case e := <-w.Events:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. src/README.vendor

    Vendored packages are internally renamed with a "vendor/" prefix
    to preserve the invariant that all packages have distinct paths.
    This is necessary to avoid compiler and linker conflicts. Adding
    a "vendor/" prefix also maintains the invariant that standard
    library packages begin with a dotless path element.
    
    The module requirements of std and cmd do not influence version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. 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)
  4. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonJvmSettingsIntegrationTest.groovy

                            assert memBean.heapMemoryUsage.max > 256 * 1024 * 1024
                        }
                    }
                }
            """
    
            when:
            // This prevents the executer fixture from adding "default" values to the build jvm options
            executer.useOnlyRequestedJvmOpts()
            executer.withEnvironmentVars(JAVA_TOOL_OPTIONS: javaToolOptions)
            run "verify"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. src/archive/tar/writer.go

    }
    
    func (tw *Writer) writePAXHeader(hdr *Header, paxHdrs map[string]string) error {
    	realName, realSize := hdr.Name, hdr.Size
    
    	// TODO(dsnet): Re-enable this when adding sparse support.
    	// See https://golang.org/issue/22735
    	/*
    		// Handle sparse files.
    		var spd sparseDatas
    		var spb []byte
    		if len(hdr.SparseHoles) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/cc/pass_pipeline.h

    void AddProcessNchwTensorPasses(OpPassManager& pm);
    
    // Registers quantization pass pipelines. This is only required when running
    // MLIR opt binaries and not required when adding passes programmatically.
    void RegisterPassPipelines();
    
    }  // namespace mlir::quant::stablehlo
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 12:53:33 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/ops/gen/cpp/renderers/renderer.h

      template <typename... Args>
      Renderer BlockOpen(absl::string_view text, const Args &...args) {
        return BlockOpen(absl::Substitute(text, args...));
      }
    
      // Append a line of code ending a block: unindenting and adding '}'.
      // Note: optional trailing text is often a comment, e.g. '// namespace xyz'.
      Renderer &BlockClose(const string &text = "");
      template <typename... Args>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. docs/en/docs/advanced/sub-applications.md

    ## Mounting a **FastAPI** application
    
    "Mounting" means adding a completely "independent" application in a specific path, that then takes care of handling everything under that path, with the _path operations_ declared in that sub-application.
    
    ### Top-level application
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_node_status.go

    		if err != nil {
    			return nil, err
    		}
    		if instanceType != "" {
    			klog.InfoS("Adding label from cloud provider", "labelKey", v1.LabelInstanceType, "labelValue", instanceType)
    			node.ObjectMeta.Labels[v1.LabelInstanceType] = instanceType
    			klog.InfoS("Adding node label from cloud provider", "labelKey", v1.LabelInstanceTypeStable, "labelValue", instanceType)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/github-actions.adoc

    Before asking GitHub Actions to build your project, it's useful to ensure that it builds locally.
    Adding the "CI" environment variable will emulate running the build on GitHub Actions.
    
    The following command achieves that:
    
    [listing.terminal.sample-command]
    ----
    $ CI=true ./gradlew build
    
    BUILD SUCCESSFUL
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:41:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top