Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 66 for assist (0.13 sec)

  1. src/cmd/vendor/rsc.io/markdown/entity.go

    	"𝔸":                            "\U0001d538",
    	"⁡":                   "\u2061",
    	"Å":                           "\u00c5",
    	"𝒜":                            "\U0001d49c",
    	"≔":                          "\u2254",
    	"Ã":                          "\u00c3",
    	"Ä":                            "\u00c4",
    	"∖":                       "\u2216",
    	"⫧":                            "\u2ae7",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

    import static com.google.common.base.Preconditions.checkArgument;
    import static com.google.common.base.Preconditions.checkNotNull;
    import static com.google.common.base.Preconditions.checkState;
    import static com.google.common.collect.Lists.asList;
    import static com.google.common.util.concurrent.ClosingFuture.State.CLOSED;
    import static com.google.common.util.concurrent.ClosingFuture.State.CLOSING;
    import static com.google.common.util.concurrent.ClosingFuture.State.OPEN;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/ClosingFuture.java

    import static com.google.common.base.Preconditions.checkArgument;
    import static com.google.common.base.Preconditions.checkNotNull;
    import static com.google.common.base.Preconditions.checkState;
    import static com.google.common.collect.Lists.asList;
    import static com.google.common.util.concurrent.ClosingFuture.State.CLOSED;
    import static com.google.common.util.concurrent.ClosingFuture.State.CLOSING;
    import static com.google.common.util.concurrent.ClosingFuture.State.OPEN;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  4. src/internal/trace/traceviewer/static/webcomponents.min.js

    get:function(){},set:function(e){},configurable:!0,enumerable:!0},V=function(){var e=Object.getOwnPropertyDescriptor(Node.prototype,"nodeType");return e&&!e.get&&!e.set}(),G={get:void 0,configurable:!0,enumerable:!0};e.addForwardingProperties=c,e.assert=n,e.constructorTable=R,e.defineGetter=D,e.defineWrapGetter=H,e.forwardMethodsToWrapper=x,e.isIdentifierName=d,e.isWrapper=_,e.isWrapperFor=b,e.mixin=r,e.nativePrototypeTable=I,e.oneOf=i,e.registerObject=y,e.registerWrapper=v,e.rewrap=j,e.setWrapp...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 115.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

    				}
    			}
    		})
    	}
    }
    
    // These are test cases for StrategicMergePatch, to assert that applying  a patch
    // yields the correct outcome. They are also test cases for CreateTwoWayMergePatch
    // and CreateThreeWayMergePatch, to assert that they both generate the correct patch
    // for the given set of input documents.
    var createStrategicMergePatchTestCaseData = []byte(`
    testCases:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    							Claim:  "groups",
    							Prefix: pointer.String(""),
    						},
    					},
    				},
    				Client: &http.Client{Transport: errTransport("some unexpected oidc error")}, // return an error that we can assert against
    				now:    func() time.Time { return now },
    			},
    			signingKey: loadRSAPrivKey(t, "testdata/rsa_1.pem", jose.RS256),
    			pubKeys: []*jose.JSONWebKey{
    				loadRSAKey(t, "testdata/rsa_1.pem", jose.RS256),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"arrows_counterclockwise":              "\U0001f504",
    	"art":                                  "\U0001f3a8",
    	"articulated_lorry":                    "\U0001f69b",
    	"artificial_satellite":                 "\U0001f6f0\ufe0f",
    	"artist":                               "\U0001f9d1\u200d\U0001f3a8",
    	"aruba":                                "\U0001f1e6\U0001f1fc",
    	"ascension_island":                     "\U0001f1e6\U0001f1e8",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  8. src/reflect/all_test.go

    	v1 := ValueOf(&inter)
    	v2 := v1.Elem().Field(0)
    	assert(t, v2.Type().String(), "interface {}")
    	i2 := v2.Interface()
    	v3 := ValueOf(i2)
    	assert(t, v3.Type().String(), "float64")
    }
    
    func TestInterfaceValue(t *testing.T) {
    	var inter struct {
    		E any
    	}
    	inter.E = 123.456
    	v1 := ValueOf(&inter)
    	v2 := v1.Elem().Field(0)
    	assert(t, v2.Type().String(), "interface {}")
    	v3 := v2.Elem()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  9. pkg/config/validation/validation_test.go

    		},
    	}
    
    	for _, tc := range cases {
    		t.Run(tc.input, func(t *testing.T) {
    			got := ValidateHTTPHeaderValue(tc.input)
    			if tc.expected == nil {
    				assert.NoError(t, got)
    			} else {
    				assert.Error(t, got)
    			}
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    limitations under the License.
    */
    
    package cel
    
    import (
    	"bytes"
    	"context"
    	"flag"
    	"fmt"
    	"math"
    	"strings"
    	"sync"
    	"testing"
    	"time"
    
    	"github.com/stretchr/testify/assert"
    	"github.com/stretchr/testify/require"
    
    	"k8s.io/klog/v2"
    	"k8s.io/kube-openapi/pkg/validation/strfmt"
    	"k8s.io/utils/ptr"
    
    	apiextensionsinternal "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
Back to top