Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 52 for Parses (0.25 sec)

  1. guava/src/com/google/common/util/concurrent/AbstractFuture.java

       * {@code setFuture} after any cancellation will propagate cancellation to the supplied {@code
       * Future}.
       *
       * <p>Note that, even if the supplied future is cancelled and it causes this future to complete,
       * it will never trigger interruption behavior. In particular, it will not cause this future to
       * invoke the {@link #interruptTask} method, and the {@link #wasInterrupted} method will not
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  2. src/time/time_test.go

    			}
    			f := fmt.Sprintf("%04d-%02d-%02d %03d %+.2d00",
    				ydt.year, ydt.month, ydt.day, ydt.yday, (i-2)*4)
    			dt1, err := Parse("2006-01-02 002 -0700", f)
    			if err != nil {
    				t.Errorf(`Parse("2006-01-02 002 -0700", %q): %v`, f, err)
    				continue
    			}
    			if !dt1.Equal(dt) {
    				t.Errorf(`Parse("2006-01-02 002 -0700", %q) = %v, want %v`, f, dt1, dt)
    			}
    		}
    	}
    }
    
    var durationTests = []struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/expr.go

    				return nil, nil, InvalidUntypedConversion
    			}
    		case UntypedString:
    			// Non-constant untyped string values are not permitted by the spec and
    			// should not occur during normal typechecking passes, but this path is
    			// reachable via the AssignableTo API.
    			if !isString(target) {
    				return nil, nil, InvalidUntypedConversion
    			}
    		default:
    			return nil, nil, InvalidUntypedConversion
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/buildlist.go

    		fmt.Fprintf(b, "\n\t%s", c.Summary())
    	}
    	return b.String()
    }
    
    // A Conflict is a path of requirements starting at a root or proposed root in
    // the requirement graph, explaining why that root either causes a module passed
    // in the mustSelect list to EditBuildList to be unattainable, or introduces an
    // unresolvable error in loading the requirement graph.
    type Conflict struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/queue/scheduling_queue.go

    	for p.activeQ.Len() == 0 {
    		// When the queue is empty, invocation of Pop() is blocked until new item is enqueued.
    		// When Close() is called, the p.closed is set and the condition is broadcast,
    		// which causes this loop to continue and return from the Pop().
    		if p.closed {
    			logger.V(2).Info("Scheduling queue is closed")
    			return nil, nil
    		}
    		p.cond.Wait()
    	}
    	obj, err := p.activeQ.Pop()
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  6. cmd/test-utils_test.go

    // Excerpts from @lsegal - https://github.com/aws/aws-sdk-js/issues/659#issuecomment-120477258
    //
    //	User-Agent:
    //
    //	    This is ignored from signing because signing this causes problems with generating pre-signed URLs
    //	    (that are executed by other agents) or when customers pass requests through proxies, which may
    //	    modify the user-agent.
    //
    //	Authorization:
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  7. src/text/template/exec_test.go

    	}
    	for _, test := range execTests {
    		var tmpl *Template
    		var err error
    		if template == nil {
    			tmpl, err = New(test.name).Funcs(funcs).Parse(test.input)
    		} else {
    			tmpl, err = template.New(test.name).Funcs(funcs).Parse(test.input)
    		}
    		if err != nil {
    			t.Errorf("%s: parse error: %s", test.name, err)
    			continue
    		}
    		b.Reset()
    		err = tmpl.Execute(b, test.data)
    		switch {
    		case !test.ok && err == nil:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  8. src/runtime/mbitmap.go

    	//
    	// Mirrors mspan.writeHeapBitsSmall.
    	//
    	// We should be using heapBits(), but unfortunately it introduces
    	// both bounds checks panics and throw which causes us to exceed
    	// the nosplit limit in quite a few cases.
    	i := (addr - span.base()) / goarch.PtrSize / ptrBits
    	j := (addr - span.base()) / goarch.PtrSize % ptrBits
    	bits := span.elemsize / goarch.PtrSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// Required
    	ClientConfig WebhookClientConfig `json:"clientConfig" protobuf:"bytes,2,opt,name=clientConfig"`
    
    	// Rules describes what operations on what resources/subresources the webhook cares about.
    	// The webhook cares about an operation if it matches _any_ Rule.
    	// However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	// Some driver responses missing?
    	if pendingDelayedClaims > 0 {
    		// We could start a pod scheduling attempt to refresh the
    		// potential nodes list.  But pod scheduling attempts are
    		// expensive and doing them too often causes the pod to enter
    		// backoff. Let's wait instead for all drivers to reply.
    		if loggerV := logger.V(6); loggerV.Enabled() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
Back to top