Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 106 for continued (0.41 sec)

  1. pkg/proxy/ipvs/proxier_test.go

    		if err != nil {
    			t.Errorf("Case [%d], unexpected list IPVS virtual server error: %v", i, err)
    		}
    		if len(list) != 1 {
    			t.Errorf("Case [%d], expect %d virtual servers, got %d", i, 1, len(list))
    			continue
    		}
    		if !list[0].Equal(testCases[i].newVirtualServer) {
    			t.Errorf("Case [%d], unexpected mismatch, expect: %#v, got: %#v", i, testCases[i].newVirtualServer, list[0])
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  2. src/main/webapp/js/admin/bootstrap.min.js.map

    relatedTarget.clickEvent = event\n      }\n\n      if (!context) {\n        continue\n      }\n\n      const dropdownMenu = context._menu\n      if (!$(parent).hasClass(ClassName.SHOW)) {\n        continue\n      }\n\n      if (event && (event.type === 'click' &&\n          /input|textarea/i.test(event.target.tagName) || event.type === 'keyup' && event.which === TAB_KEYCODE) &&\n          $.contains(parent, event.target)) {\n        continue\n      }\n\n      const hideEvent = $.Event(Event.HIDE, relatedTarget)\n...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 185.8K bytes
    - Viewed (1)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    // optionally skipping some.
    func (ps *printState) printList(args []AST, skip func(AST) bool) {
    	first := true
    	for _, a := range args {
    		if skip != nil && skip(a) {
    			continue
    		}
    		if !first {
    			ps.writeString(", ")
    		}
    
    		needsParen := false
    		if ps.llvmStyle {
    			if p, ok := a.(hasPrec); ok {
    				if p.prec() >= precComma {
    					needsParen = true
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_node_status_test.go

    				expectedActions = 1
    			}
    			require.Len(t, actions, expectedActions)
    
    			for i, action := range actions {
    				if i%2 == 0 && i > 0 {
    					require.IsType(t, core.GetActionImpl{}, action)
    					continue
    				}
    
    				require.IsType(t, core.PatchActionImpl{}, action)
    				patchAction := action.(core.PatchActionImpl)
    
    				updatedNode, err := applyNodeStatusPatch(node, patchAction.GetPatch())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  5. src/main/webapp/js/bootstrap.min.js.map

    relatedTarget.clickEvent = event\n      }\n\n      if (!context) {\n        continue\n      }\n\n      const dropdownMenu = context._menu\n      if (!$(parent).hasClass(ClassName.SHOW)) {\n        continue\n      }\n\n      if (event && (event.type === 'click' &&\n          /input|textarea/i.test(event.target.tagName) || event.type === 'keyup' && event.which === TAB_KEYCODE) &&\n          $.contains(parent, event.target)) {\n        continue\n      }\n\n      const hideEvent = $.Event(Event.HIDE, relatedTarget)\n...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jan 11 06:54:28 UTC 2020
    - 189.9K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_test.go

    		for _, container := range pod.Spec.Containers {
    			for resource := range container.Resources.Requests {
    				newQuantity, exist := updateResourceMap[resource]
    				if !exist {
    					continue
    				}
    				if newQuantity.Value() < 0 {
    					return fmt.Errorf("Allocation failed")
    				}
    				newAllocatableResource.ScalarResources[resource] = newQuantity.Value()
    			}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Eliminate _replication_info and other attributes from ops in a cluster";
    
      let description = [{
        This pass eliminate `_replication_info` and `device` attribute on operations
        that are contained in a tf_device.cluster op.
      }];
    
      let constructor = "TFTPU::CreateTPUClusterCleanupAttributesPass()";
    }
    
    def TPUSpaceToDepthPass : Pass<"tf-tpu-space-to-depth-pass", "ModuleOp"> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	VT0                                         = 0x0
    	WAKE_MAGIC                                  = 0x20
    	WALL                                        = 0x40000000
    	WCLONE                                      = 0x80000000
    	WCONTINUED                                  = 0x8
    	WDIOC_SETPRETIMEOUT                         = 0xc0045708
    	WDIOC_SETTIMEOUT                            = 0xc0045706
    	WDIOF_ALARMONLY                             = 0x400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                        doLast { }
                    }
                }
            """
    
            when:
            fails "badTask", "--continue"
    
            then:
            ['app', 'lib', 'util'].withIndex()
                .each { appType, index ->
                    def reserved = file("${appType}/build/${forbiddenPath}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  10. src/database/sql/sql_test.go

    		t.Fatalf("ColumnTypes: %v", err)
    	}
    
    	types := make([]reflect.Type, len(tt))
    	for i, tp := range tt {
    		st := tp.ScanType()
    		if st == nil {
    			t.Errorf("scantype is null for column %q", tp.Name())
    			continue
    		}
    		types[i] = st
    	}
    	values := make([]any, len(tt))
    	for i := range values {
    		values[i] = reflect.New(types[i]).Interface()
    	}
    	ct := 0
    	for rows.Next() {
    		err = rows.Scan(values...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top