Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 85 for Missing (0.25 sec)

  1. src/time/time_test.go

    	"fmt"
    	"math"
    	"math/big"
    	"math/rand"
    	"os"
    	"runtime"
    	"strings"
    	"sync"
    	"testing"
    	"testing/quick"
    	. "time"
    )
    
    // We should be in PST/PDT, but if the time zone files are missing we
    // won't be. The purpose of this test is to at least explain why some of
    // the subsequent tests fail.
    func TestZoneData(t *testing.T) {
    	lt := Now()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  2. cmd/iam.go

    				_, err := sys.store.GetPolicy(pname)
    				if errors.Is(err, errNoSuchPolicy) {
    					// all policies presented in the claim should exist
    					iamLogIf(GlobalContext, fmt.Errorf("expected policy (%s) missing from the JWT claim %s, rejecting the request", pname, iamPolicyClaimNameOpenID()))
    					return false
    				}
    			}
    			iamLogIf(GlobalContext, fmt.Errorf("all policies were unexpectedly present!"))
    			return false
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. src/text/template/exec_test.go

    	{"pipeline", "-{{.Method0 | .Method2 .U16}}-", "-Method2: 16 M0-", tVal, true},
    	{"pipeline func", "-{{call .VariadicFunc `llo` | call .VariadicFunc `he` }}-", "-<he+<llo>>-", tVal, true},
    
    	// Nil values aren't missing arguments.
    	{"nil pipeline", "{{ .Empty0 | call .NilOKFunc }}", "true", tVal, true},
    	{"nil call arg", "{{ call .NilOKFunc .Empty0 }}", "true", tVal, true},
    	{"bad nil pipeline", "{{ .Empty0 | .VariadicFunc }}", "", tVal, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  4. cmd/admin-handlers-users.go

    	if hasSpaceBE(policyName) {
    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrAdminResourceInvalidArgument), r.URL)
    		return
    	}
    
    	// Error out if Content-Length is missing.
    	if r.ContentLength <= 0 {
    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrMissingContentLength), r.URL)
    		return
    	}
    
    	// Error out if Content-Length is beyond allowed size.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller.go

    	}()
    
    	ns, name, err := cache.SplitMetaNamespaceKey(key)
    	if err != nil {
    		return err
    	}
    	if len(ns) == 0 || len(name) == 0 {
    		return fmt.Errorf("invalid job key %q: either namespace or name is missing", key)
    	}
    	sharedJob, err := jm.jobLister.Jobs(ns).Get(name)
    	if err != nil {
    		if apierrors.IsNotFound(err) {
    			logger.V(4).Info("Job has been deleted", "key", key)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/route/route_test.go

    				virtualServiceWithNestedWildcardHost,
    				virtualServiceWithGoogleWildcardHost,
    			}, 8080,
    			wildcardIndex,
    		)
    		log.Printf("%#v", vhosts)
    		// *.example.org, *.hello.example.org. The *.google.com VS is missing from virtualHosts because
    		// it is not attached to a service
    		g.Expect(vhosts).To(HaveLen(2))
    		for _, vhost := range vhosts {
    			g.Expect(vhost.Services).To(HaveLen(1))
    			g.Expect(vhost.Routes).To(HaveLen(1))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_client_test.go

    		found := false
    		for _, flag := range command[1:] {
    			if flag == "-state" {
    				found = true
    				break
    			}
    		}
    
    		if !found {
    			panic("-state flag missing to OpenSSL, you need this if testing renegotiation or KeyUpdate")
    		}
    	}
    
    	cmd := exec.Command(command[0], command[1:]...)
    	stdin = opensslInput(make(chan opensslInputEvent))
    	cmd.Stdin = stdin
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  8. src/cmd/link/internal/loader/loader.go

    // definitions of that symbol. See issue #42396 for details.
    //
    // As currently implemented, this is a fatal error. This has drawbacks
    // in that if there are multiple missing builtins, the error will only
    // cite the first one. On the plus side, terminating the link here has
    // advantages in that we won't run the risk of panics or crashes later
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  9. src/reflect/type.go

    		c := field.Name[0]
    		if 'a' <= c && c <= 'z' || c == '_' {
    			panic("reflect.StructOf: field \"" + field.Name + "\" is unexported but missing PkgPath")
    		}
    	}
    
    	resolveReflectType(field.Type.common()) // install in runtime
    	f := structField{
    		Name:   newName(field.Name, string(field.Tag), field.IsExported(), field.Anonymous),
    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/net/http/fs_test.go

    		if !strings.HasPrefix(s, dirListPrefix) || !strings.HasSuffix(s, dirListSuffix) {
    			t.Errorf("test %q: listing dir, full output is %q, want prefix %q and suffix %q", test.name, s, dirListPrefix, dirListSuffix)
    		}
    		if trimmed := strings.TrimSuffix(strings.TrimPrefix(s, dirListPrefix), dirListSuffix); trimmed != test.escaped {
    			t.Errorf("test %q: listing dir, filename escaped to %q, want %q", test.name, trimmed, test.escaped)
    		}
    		res.Body.Close()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
Back to top