Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 188 for Bind (0.09 sec)

  1. src/cmd/compile/internal/ssa/rewriteMIPS.go

    	// cond: boundsABI(kind) == 1
    	// result: (LoweredPanicBoundsB [kind] x y mem)
    	for {
    		kind := auxIntToInt64(v.AuxInt)
    		x := v_0
    		y := v_1
    		mem := v_2
    		if !(boundsABI(kind) == 1) {
    			break
    		}
    		v.reset(OpMIPSLoweredPanicBoundsB)
    		v.AuxInt = int64ToAuxInt(kind)
    		v.AddArg3(x, y, mem)
    		return true
    	}
    	// match: (PanicBounds [kind] x y mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 176.6K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_test.go

        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package kubelet
    
    import (
    	"context"
    	"crypto/tls"
    	"fmt"
    	"net"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  3. pkg/controller/podautoscaler/horizontal_test.go

    				Name:      hpaName,
    				Namespace: namespace,
    			},
    			Spec: autoscalingv2.HorizontalPodAutoscalerSpec{
    				ScaleTargetRef: autoscalingv2.CrossVersionObjectReference{
    					Kind:       tc.resource.kind,
    					Name:       tc.resource.name,
    					APIVersion: tc.resource.apiVersion,
    				},
    				MinReplicas: &tc.minReplicas,
    				MaxReplicas: tc.maxReplicas,
    				Behavior:    behavior,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers.go

    	}
    	return rows, nil
    }
    
    // formatResourceName receives a resource kind, name, and boolean specifying
    // whether or not to update the current name to "kind/name"
    func formatResourceName(kind schema.GroupKind, name string, withKind bool) string {
    	if !withKind || kind.Empty() {
    		return name
    	}
    
    	return strings.ToLower(kind.String()) + "/" + name
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  5. pkg/kubelet/eviction/eviction_manager_test.go

        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package eviction
    
    import (
    	"context"
    	"fmt"
    	"testing"
    	"time"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    }
    
    // setSymType sets a new override type for 's'.
    func (state *dodataState) setSymType(s loader.Sym, kind sym.SymKind) {
    	if s == 0 {
    		panic("bad")
    	}
    	if int(s) < len(state.symGroupType) {
    		state.symGroupType[s] = kind
    	} else {
    		su := state.ctxt.loader.MakeSymbolUpdater(s)
    		su.SetType(kind)
    	}
    }
    
    func (ctxt *Link) dodata(symGroupType []sym.SymKind) {
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  7. pkg/apis/resource/v1alpha2/zz_generated.conversion.go

    	out.APIGroup = in.APIGroup
    	out.Kind = in.Kind
    	out.Name = in.Name
    	return nil
    }
    
    // Convert_v1alpha2_ResourceClaimParametersReference_To_resource_ResourceClaimParametersReference is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.mylasta.action;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_builder_test.go

    						util.IstioMetadataKey: {
    							Fields: map[string]*structpb.Value{
    								"services": {Kind: &structpb.Value_ListValue{ListValue: &structpb.ListValue{Values: []*structpb.Value{
    									{Kind: &structpb.Value_StructValue{StructValue: &structpb.Struct{Fields: map[string]*structpb.Value{
    										"host": {
    											Kind: &structpb.Value_StringValue{
    												StringValue: "host",
    											},
    										},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  10. src/reflect/all_test.go

    	// Used to have inconsistency between IsValid() and Kind() != Invalid.
    	type T struct{ v any }
    
    	v := ValueOf(T{}).Field(0)
    	if v.IsValid() != true || v.Kind() != Interface {
    		t.Errorf("field: IsValid=%v, Kind=%v, want true, Interface", v.IsValid(), v.Kind())
    	}
    	v = v.Elem()
    	if v.IsValid() != false || v.Kind() != Invalid {
    		t.Errorf("field elem: IsValid=%v, Kind=%v, want false, Invalid", v.IsValid(), v.Kind())
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top