Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 86 for REPORT (0.14 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event  will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  2. src/go/printer/nodes.go

    		// should never happen - handle gracefully and flush
    		// all comments up to g, ignore anything after that
    		p.flush(p.posFor(g.List[0].Pos()), token.ILLEGAL)
    		p.comments = p.comments[0:1]
    		// in debug mode, report error
    		p.internalError("setComment found pending comments")
    	}
    	p.comments[0] = g
    	p.cindex = 0
    	// don't overwrite any pending comment in the p.comment cache
    	// (there may be a pending comment when a line comment is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  3. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // produce the current state of objects in the collection. Once all such
      // events have been sent, a synthetic "Bookmark" event  will be sent.
      // The bookmark will report the ResourceVersion (RV) corresponding to the
      // set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation.
      // Afterwards, the watch stream will proceed as usual, sending watch events
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // produce the current state of objects in the collection. Once all such
      // events have been sent, a synthetic "Bookmark" event  will be sent.
      // The bookmark will report the ResourceVersion (RV) corresponding to the
      // set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation.
      // Afterwards, the watch stream will proceed as usual, sending watch events
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    				// These validation errors overlap with  OpenAPISchema validation errors so we keep track of them
    				// separately and only show them if OpenAPISchema validation does not report any errors.
    				structuralSchemaInitErrs = append(structuralSchemaInitErrs, field.Invalid(fldPath.Child("openAPIV3Schema"), "", err.Error()))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  6. src/go/build/build.go

    			badGoFile(name, err)
    			continue
    		}
    		if info == nil {
    			if strings.HasPrefix(name, "_") || strings.HasPrefix(name, ".") {
    				// not due to build constraints - don't report
    			} else if ext == ".go" {
    				p.IgnoredGoFiles = append(p.IgnoredGoFiles, name)
    			} else if fileListForExt(p, ext) != nil {
    				p.IgnoredOtherFiles = append(p.IgnoredOtherFiles, name)
    			}
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  7. src/runtime/malloc.go

    	if msanenabled {
    		msanmalloc(x, size)
    	}
    
    	if asanenabled {
    		// We should only read/write the memory with the size asked by the user.
    		// The rest of the allocated memory should be poisoned, so that we can report
    		// errors when accessing poisoned memory.
    		// The allocated memory is larger than required userSize, it will also include
    		// redzone and some other padding bytes.
    		rzBeg := unsafe.Add(x, userSize)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. cmd/erasure-server-pool.go

    		}
    		// Hadoop makes the max-keys=2 listing call just to find if the directory is empty or not, or in the case
    		// of an object to check for object existence. For versioned buckets, MinIO's non-recursive
    		// call will report top level prefixes in deleted state, whereas spark/hadoop interpret this as non-empty
    		// and throw a 404 exception. This is especially a problem for spark jobs overwriting the same partition
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  9. src/go/parser/parser.go

    		x = t
    	}
    	if call, isCall := x.(*ast.CallExpr); isCall {
    		return call
    	}
    	if _, isBad := x.(*ast.BadExpr); !isBad {
    		// only report error if it's a new one
    		p.error(p.safePos(x.End()), fmt.Sprintf("expression in %s must be function call", callType))
    	}
    	return nil
    }
    
    func (p *parser) parseGoStmt() ast.Stmt {
    	if p.trace {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewrite.go

    }
    
    // log2uint32 returns logarithm in base 2 of uint32(n), with log2(0) = -1.
    // Rounds down.
    func log2uint32(n int64) int64 {
    	return int64(bits.Len32(uint32(n))) - 1
    }
    
    // isPowerOfTwoX functions report whether n is a power of 2.
    func isPowerOfTwo8(n int8) bool {
    	return n > 0 && n&(n-1) == 0
    }
    func isPowerOfTwo16(n int16) bool {
    	return n > 0 && n&(n-1) == 0
    }
    func isPowerOfTwo32(n int32) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top