Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 193 for BREAK (0.06 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    			errors = append(errors, fmt.Sprintf("must only contain printable UTF-8 characters; non-printable character found at index %d", i))
    			break
    		}
    		if unicode.IsControl(r) {
    			errors = append(errors, fmt.Sprintf("must only contain printable UTF-8 characters; control character found at index %d", i))
    			break
    		}
    	}
    	if !utf8.ValidString(*deprecationWarning) {
    		errors = append(errors, "must only contain printable UTF-8 characters")
    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/cmd/compile/internal/ssa/rewrite.go

    						// The memory phi, if it exists, is always
    						// the first logical store in the block.
    						break
    					}
    					if m.Block.ID != target.Block.ID {
    						break
    					}
    					if !m.Type.IsMemory() {
    						break
    					}
    					memPreds[m] = true
    					if len(m.Args) == 0 {
    						break
    					}
    					m = m.MemoryArg()
    				}
    			}
    
    			// We can merge if v is a predecessor of mem.
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  3. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                                "POM file " + arg + " specified with the -f/--file command line argument does not exist");
                        throw new ExitException(1);
                    }
                    break;
                } else {
                    // Check if this is the -f/--file option
                    isAltFile = arg.equals("-f") || arg.equals("--file");
                }
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  4. src/cmd/internal/testdir/testdir_test.go

    func shouldTest(src string, goos, goarch string) (ok bool, whyNot string) {
    	if *runSkips {
    		return true, ""
    	}
    	for _, line := range strings.Split(src, "\n") {
    		if strings.HasPrefix(line, "package ") {
    			break
    		}
    
    		if expr, err := constraint.Parse(line); err == nil {
    			gcFlags := os.Getenv("GO_GCFLAGS")
    			ctxt := &context{
    				GOOS:       goos,
    				GOARCH:     goarch,
    				cgoEnabled: cgoEnabled,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/test/test.go

    				break
    			}
    			fmt.Fprintf(h, "stat %s %x\n", name, hashStat(name))
    		case "open":
    			if !filepath.IsAbs(name) {
    				name = filepath.Join(pwd, name)
    			}
    			if a.Package.Root == "" || search.InDir(name, a.Package.Root) == "" {
    				// Do not recheck files outside the module, GOPATH, or GOROOT root.
    				break
    			}
    			fh, err := hashOpen(name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/mips/asm0.go

    			return C_LO
    		}
    		if a.Reg == REG_HI {
    			return C_HI
    		}
    		return C_GOK
    
    	case obj.TYPE_MEM:
    		switch a.Name {
    		case obj.NAME_EXTERN,
    			obj.NAME_STATIC:
    			if a.Sym == nil {
    				break
    			}
    			c.instoffset = a.Offset
    			if a.Sym != nil { // use relocation
    				if a.Sym.Type == objabi.STLSBSS {
    					return C_TLS
    				}
    				return C_ADDR
    			}
    			return C_LEXT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  7. cmd/kubelet/app/server.go

    	}
    
    	if s.RunOnce {
    		return nil
    	}
    
    	// If systemd is used, notify it that we have started
    	go daemon.SdNotify(false, "READY=1")
    
    	select {
    	case <-done:
    		break
    	case <-ctx.Done():
    		break
    	}
    
    	return nil
    }
    
    // buildKubeletClientConfig constructs the appropriate client config for the kubelet depending on whether
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ppc64/asm.go

    		} else if target.IsPIE() && target.IsInternal() {
    			// For internal linking PIE, this R_ADDR relocation cannot
    			// be resolved statically. We need to generate a dynamic
    			// relocation. Let the code below handle it.
    			break
    		}
    		return true
    
    	case objabi.ElfRelocOffset + objabi.RelocType(elf.R_PPC64_TOC16):
    		su := ldr.MakeSymbolUpdater(s)
    		su.SetRelocType(rIdx, objabi.R_POWER_TOC)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  9. src/cmd/go/go_test.go

    	os.Unsetenv("GOPATH")
    	os.Unsetenv("GIT_ALLOW_PROTOCOL")
    	os.Setenv("HOME", "/test-go-home-does-not-exist")
    	// On some systems the default C compiler is ccache.
    	// Setting HOME to a non-existent directory will break
    	// those systems. Disable ccache and use real compiler. Issue 17668.
    	os.Setenv("CCACHE_DISABLE", "1")
    	if cfg.Getenv("GOCACHE") == "" {
    		os.Setenv("GOCACHE", testGOCACHE) // because $HOME is gone
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  10. cmd/bucket-handlers.go

    	)
    
    	maxParts := 1000
    	// Canonicalize the form values into http.Header.
    	formValues := make(http.Header)
    	for {
    		part, err := mp.NextRawPart()
    		if errors.Is(err, io.EOF) {
    			break
    		}
    		if err != nil {
    			apiErr := errorCodes.ToAPIErr(ErrMalformedPOSTRequest)
    			apiErr.Description = fmt.Sprintf("%s (%v)", apiErr.Description, err)
    			writeErrorResponse(ctx, w, apiErr, r.URL)
    			return
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
Back to top