Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 241 for discarded (0.24 sec)

  1. tensorflow/compiler/mlir/lite/transforms/dilated_conv.h

    // WaveNet) to the 4D arrays that Conv2D requires. Padding and BiasAdd are
    // thrown in just for the extra headache. Padding adapts non-conforming input
    // sizes, and can be discarded. The bias is necessary, so is kept.
    template <typename Conv2dOpTy>
    class ConvertTFDilatedConvOp : public OpRewritePattern<Conv2dOpTy> {
     private:
      using OpRewritePattern<Conv2dOpTy>::OpRewritePattern;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20K bytes
    - Viewed (0)
  2. src/net/rpc/server.go

    // write a response back. The server calls [ServerCodec.Close] when finished with the
    // connection. ReadRequestBody may be called with a nil
    // argument to force the body of the request to be read and discarded.
    // See [NewClient]'s comment for information about concurrent access.
    type ServerCodec interface {
    	ReadRequestHeader(*Request) error
    	ReadRequestBody(any) error
    	WriteResponse(*Response, any) error
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  3. src/strconv/quote.go

    			out = in[:end] // include quotes
    		case !contains(in[:end], '\r'):
    			out = in[len("`") : end-len("`")] // exclude quotes
    		default:
    			// Carriage return characters ('\r') inside raw string literals
    			// are discarded from the raw string value.
    			buf := make([]byte, 0, end-len("`")-len("\r")-len("`"))
    			for i := len("`"); i < end-len("`"); i++ {
    				if in[i] != '\r' {
    					buf = append(buf, in[i])
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  4. src/text/template/doc.go

    data, defined in detail in the corresponding sections that follow.
    
    */
    //	{{/* a comment */}}
    //	{{- /* a comment with white space trimmed from preceding and following text */ -}}
    //		A comment; discarded. May contain newlines.
    //		Comments do not nest and must start and end at the
    //		delimiters, as shown here.
    /*
    
    	{{pipeline}}
    		The default textual representation (the same as would be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  5. cmd/metacache-entries.go

    // The output channel will be closed when all inputs are emptied.
    // If file names are equal, compareMeta is called to select which one to choose.
    // The entry not chosen will be discarded.
    // If the context is canceled the function will return the error,
    // otherwise the function will return nil.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 04:34:26 UTC 2024
    - 24K bytes
    - Viewed (0)
  6. src/text/template/parse/parse.go

    const (
    	ParseComments Mode = 1 << iota // parse comments and add them to AST
    	SkipFuncCheck                  // do not check that functions are defined
    )
    
    // Copy returns a copy of the [Tree]. Any parsing state is discarded.
    func (t *Tree) Copy() *Tree {
    	if t == nil {
    		return nil
    	}
    	return &Tree{
    		Name:      t.Name,
    		ParseName: t.ParseName,
    		Root:      t.Root.CopyList(),
    		text:      t.text,
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/autoscaling/v2beta2/generated.proto

      // +optional
      optional string selectPolicy = 1;
    
      // policies is a list of potential scaling polices which can be used during scaling.
      // At least one policy must be specified, otherwise the HPAScalingRules will be discarded as invalid
      // +optional
      repeated HPAScalingPolicy policies = 2;
    }
    
    // HorizontalPodAutoscaler is the configuration for a horizontal pod
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/autoscaling/v2/generated.proto

      // +optional
      optional string selectPolicy = 1;
    
      // policies is a list of potential scaling polices which can be used during scaling.
      // At least one policy must be specified, otherwise the HPAScalingRules will be discarded as invalid
      // +listType=atomic
      // +optional
      repeated HPAScalingPolicy policies = 2;
    }
    
    // HorizontalPodAutoscaler is the configuration for a horizontal pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/autoscaling/v2beta2/generated.proto

      // +optional
      optional string selectPolicy = 1;
    
      // policies is a list of potential scaling polices which can be used during scaling.
      // At least one policy must be specified, otherwise the HPAScalingRules will be discarded as invalid
      // +optional
      // +listType=atomic
      repeated HPAScalingPolicy policies = 2;
    }
    
    // HorizontalPodAutoscaler is the configuration for a horizontal pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. src/text/scanner/scanner.go

    // through repeated calls to the Scan function. For compatibility with
    // existing tools, the NUL character is not allowed. If the first character
    // in the source is a UTF-8 encoded byte order mark (BOM), it is discarded.
    //
    // By default, a [Scanner] skips white space and Go comments and recognizes all
    // literals as defined by the Go language specification. It may be
    // customized to recognize only a subset of those literals and to recognize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top