Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 257 for Bad (0.12 sec)

  1. src/cmd/link/internal/loader/loader.go

    	return l.dynimplib[i]
    }
    
    // SetSymDynimplib sets the "dynimplib" attribute for a symbol.
    func (l *Loader) SetSymDynimplib(i Sym, value string) {
    	// reject bad symbols
    	if i >= Sym(len(l.objSyms)) || i == 0 {
    		panic("bad symbol index in SetDynimplib")
    	}
    	if value == "" {
    		delete(l.dynimplib, i)
    	} else {
    		l.dynimplib[i] = value
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  2. cmd/generic-handlers.go

    			if err != nil {
    				return time.Time{}, ErrMalformedDate
    			}
    			return t, ErrNone
    		}
    	}
    	// Date header missing.
    	return time.Time{}, ErrMissingDateHeader
    }
    
    // Bad path components to be rejected by the path validity handler.
    const (
    	dotdotComponent = ".."
    	dotComponent    = "."
    )
    
    func hasBadHost(host string) error {
    	if globalIsCICD && strings.TrimSpace(host) == "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 01:01:15 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  3. cmd/object-lambda-handlers.go

    	"Use Proxy":                       http.StatusUseProxy,
    	"Temporary Redirect":              http.StatusTemporaryRedirect,
    	"Permanent Redirect":              http.StatusPermanentRedirect,
    	"Bad Request":                     http.StatusBadRequest,
    	"Unauthorized":                    http.StatusUnauthorized,
    	"Payment Required":                http.StatusPaymentRequired,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/labels.go

    		varDeclPos = pos
    		badJumps = append(badJumps[:0], fwdJumps...) // copy fwdJumps to badJumps
    	}
    
    	jumpsOverVarDecl := func(jmp *syntax.BranchStmt) bool {
    		if varDeclPos.IsKnown() {
    			for _, bad := range badJumps {
    				if jmp == bad {
    					return true
    				}
    			}
    		}
    		return false
    	}
    
    	var stmtBranches func(syntax.Stmt)
    	stmtBranches = func(s syntax.Stmt) {
    		switch s := s.(type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. src/runtime/symtabinl_test.go

    			if start != wantStart[name] {
    				t.Errorf("tiuTest+%#x: want startLine %d, got %d", pc-pc1, wantStart[name], start)
    			}
    			if sf.funcID != abi.FuncIDNormal {
    				t.Errorf("tiuTest+%#x: bad funcID %v", pc-pc1, sf.funcID)
    			}
    
    			if len(stack) > 0 {
    				stack += " "
    			}
    			stack += FmtSprintf("%s:%d", name, line-tiuStart)
    		}
    
    		if stack != prevStack {
    			prevStack = stack
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. src/make.bash

    fi
    
    # Test for Windows.
    case "$(uname)" in
    *MINGW* | *WIN32* | *CYGWIN*)
    	echo 'ERROR: Do not use make.bash to build on Windows.'
    	echo 'Use make.bat instead.'
    	echo
    	exit 1
    	;;
    esac
    
    # Test for bad ld.
    if ld --version 2>&1 | grep 'gold.* 2\.20' >/dev/null; then
    	echo 'ERROR: Your system has gold 2.20 installed.'
    	echo 'This version is shipped by Ubuntu even though'
    	echo 'it is known not to work on Ubuntu.'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

              public boolean isCancelled() {
                return false; // BAD!!
              }
    
              @Override
              public String get() {
                throw new CancellationException(); // BAD!!
              }
    
              @Override
              public String get(long time, TimeUnit unit) {
                throw new CancellationException(); // BAD!!
              }
    
              @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_device_context.cc

            }
            done(done_status);
            ref.Unref();
            // If a stream is in a bad state, it gets deleted when it's returned to
            // the stream pool, i.e. when it leaves this scope. However, a stream
            // deleting itself in a host callback on itself can cause bad behaviors
            // on some platforms. Releasing it in another stream to avoid that.
            if (!device_allows_sync_on_completion &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. src/os/user/listgroups_unix_test.go

    	{in: "", user: "no-such-user", gid: "2345", gids: []string{"2345"}},
    	// Error cases.
    	{in: "", user: "", gid: "2345", err: true},
    	{in: "", user: "joanna", gid: "bad", err: true},
    }
    
    func TestListGroups(t *testing.T) {
    	for _, tc := range listGroupsTests {
    		u := &User{Username: tc.user, Gid: tc.gid}
    		got, err := listGroupsFromReader(u, strings.NewReader(tc.in))
    		if tc.err {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. pilot/pkg/trustbundle/trustbundle_test.go

    		TrustAnchorConfig: TrustAnchorConfig{Certs: []string{malformedCert}},
    		Source:            SourceIstioCA,
    	})
    	if err == nil {
    		t.Errorf("bad cert update failed. Expected error")
    	}
    	trustedCerts = tb.GetTrustBundle()
    	if !slices.Equal(trustedCerts, result) || cbCounter != 3 {
    		t.Errorf("bad cert update failed. Callback value is %v", cbCounter)
    	}
    
    	// Finally, remove all certs and ensure trustBundle is clean
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top