Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 50 for REPORT (0.34 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. cluster/gce/windows/k8s-node-setup.psm1

        } else {
          Log-Output "Either NODE_PROBLEM_DETECTOR_TOKEN or ${env:BOOTSTRAP_KUBECONFIG} must be set"
          exit 1
        }
      }
    }
    
    # Configures NPD to run with the bundled monitor configs and report against the Kubernetes api server.
    function Configure-NodeProblemDetector {
      $npd_bin = "${env:NODE_DIR}\node-problem-detector.exe"
      if ("${env:ENABLE_NODE_PROBLEM_DETECTOR}" -eq "standalone" -and (Test-Path $npd_bin)) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  7. go.sum

    github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM=
    github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo=
    github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU=
    github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 93.1K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/lib.go

    	}
    
    	if c1 != 'g' || c2 != 'o' || c3 != ' ' || c4 != 'o' {
    		// An unrecognized object is just passed to the external linker.
    		// If we try to read symbols from this object, we will
    		// report an error at that time.
    		unknownObjFormat = true
    		return ldhostobj(nil, ctxt.HeadType, f, pkg, length, pn, file)
    	}
    
    	/* check the header */
    	line, err := f.ReadString('\n')
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  9. src/reflect/type.go

    // t.FieldByName("x") is not well defined if the struct type t contains
    // multiple fields named x (embedded from different packages).
    // FieldByName may return one of the fields named x or may report that there are none.
    // See https://golang.org/issue/4876 for more details.
    
    /*
     * These data structures are known to the compiler (../cmd/compile/internal/reflectdata/reflect.go).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  10. src/cmd/cgo/gcc.go

    	}
    
    	for i, n := range names {
    		switch sniff[i] {
    		default:
    			if sniff[i]&notDeclared != 0 && optional[n] {
    				// Ignore optional undeclared identifiers.
    				// Don't report an error, and skip adding n to the needType array.
    				continue
    			}
    			error_(f.NamePos[n], "could not determine kind of name for C.%s", fixGo(n.Go))
    		case notStrLiteral | notType:
    			n.Kind = "iconst"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top