Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 40 for ADDS (0.06 sec)

  1. src/net/http/server.go

    	//
    	// If [ResponseWriter.WriteHeader] has not yet been called, Write calls
    	// WriteHeader(http.StatusOK) before writing the data. If the Header
    	// does not contain a Content-Type line, Write adds a Content-Type set
    	// to the result of passing the initial 512 bytes of written data to
    	// [DetectContentType]. Additionally, if the total size of all written
    	// data is under a few KB and there are no Flush calls, the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

      fi
    
    }
    
    # Adds master replica to etcd cluster.
    #
    # Assumed vars:
    #   REPLICA_NAME
    #   PROJECT
    #   EXISTING_MASTER_NAME
    #   EXISTING_MASTER_ZONE
    #
    # $1: etcd client port
    # $2: etcd internal port
    # $3: whether etcd communication should use mtls
    # returns the result of ssh command which adds replica
    function add-replica-to-etcd() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. pkg/controller/daemon/daemon_controller_test.go

    	oldDS := newDaemonSet("test")
    	oldDS, err = client.AppsV1().DaemonSets(oldDS.Namespace).Create(context.Background(), oldDS, metav1.CreateOptions{})
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// create of DS adds to queue, processes
    	waitForQueueLength(1, "created DS")
    	ok := dsc.processNextWorkItem(context.TODO())
    	if !ok {
    		t.Fatal("queue is shutting down")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  4. cmd/object-handlers.go

    		return err == toObjectErr(errVolumeNotFound, bucket)
    	}
    	return false
    }
    
    // CopyObjectHandler - Copy Object
    // ----------
    // This implementation of the PUT operation adds an object to a bucket
    // while reading the object from another source.
    // Notice: The S3 client can send secret keys in headers for encryption related jobs,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                    _ALOAD(1);
                    _INVOKEINTERFACE(LAZY_GROOVY_SUPPORT_TYPE, "setFromAnyValue", ClassBuilderImpl.RETURN_VOID_FROM_OBJECT);
                }});
            }
    
            /**
             * Adds a getter that returns the value of the given field, initializing it if null using the given code. The code should leave the value on the top of the stack.
             */
            private void addLazyGetter(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	// printing.  This avoids endless recursion if a substitution
    	// reference creates a cycle in the graph.
    	printing []AST
    }
    
    // writeByte adds a byte to the string being printed.
    func (ps *printState) writeByte(b byte) {
    	ps.last = b
    	ps.buf.WriteByte(b)
    }
    
    // writeString adds a string to the string being printed.
    func (ps *printState) writeString(s string) {
    	if len(s) > 0 {
    		ps.last = s[len(s)-1]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    int64_t AddNOp::GetArithmeticCount(Operation* op) {
      int64_t count;
      if (ArithmeticCountUtilHelper::GetFirstOutputCount(op, &count)) {
        // AddN cost is roughly the same cost as N-1 Adds.
        const int64_t num_adds = op->getNumOperands() - 1;
        return num_adds * count;
      }
    
      return -1;
    }
    
    //===----------------------------------------------------------------------===//
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  8. pkg/apis/resource/v1alpha2/zz_generated.conversion.go

    	core "k8s.io/kubernetes/pkg/apis/core"
    	resource "k8s.io/kubernetes/pkg/apis/resource"
    )
    
    func init() {
    	localSchemeBuilder.Register(RegisterConversions)
    }
    
    // RegisterConversions adds conversion functions to the given scheme.
    // Public to allow building arbitrary schemes.
    func RegisterConversions(s *runtime.Scheme) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

        } else {
          function_body.graph->AddEdge(arg_node, 0, e->dst(), e->dst_input());
        }
      }
      function_body.graph->RemoveNode(lifted_arg_node);
    }
    
    // Adds function def to function definition library and update the function
    // callsite operation `callsite_node` to invoke new function instead.
    Status AddFunctionWithNewName(const std::string& new_name,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/load/pkg.go

    		}
    		importPaths = append(importPaths, path)
    		if forCompiler {
    			p.Internal.CompiledImports = append(p.Internal.CompiledImports, path)
    		}
    	}
    
    	if !opts.IgnoreImports {
    		// Cgo translation adds imports of "unsafe", "runtime/cgo" and "syscall",
    		// except for certain packages, to avoid circular dependencies.
    		if p.UsesCgo() {
    			addImport("unsafe", true)
    		}
    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