Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for raerror (0.34 sec)

  1. src/main/java/jcifs/smb/SmbSessionImpl.java

                                wasInUse |= t.treeDisconnect(inError, false);
                            }
                            catch ( Exception e ) {
                                log.warn("Failed to disconnect tree " + t, e);
                            }
                        }
                    }
    
                    if ( !inError && trans.isSMB2() ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/runtime/framework.go

    	return status
    }
    
    // RunPreBindPlugins runs the set of configured prebind plugins. It returns a
    // failure (bool) if any of the plugins returns an error. It also returns an
    // error containing the rejection message or the error occurred in the plugin.
    func (f *frameworkImpl) RunPreBindPlugins(ctx context.Context, state *framework.CycleState, pod *v1.Pod, nodeName string) (status *framework.Status) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    				if tc.oldObj == nil {
    					require.NoError(t, store.Add(claim))
    				} else {
    					require.NoError(t, store.Update(claim))
    				}
    			}
    			actualHint, err := testCtx.p.isSchedulableAfterClaimChange(logger, tc.pod, tc.oldObj, tc.newObj)
    			if tc.expectedErr {
    				require.Error(t, err)
    				return
    			}
    
    			require.NoError(t, err)
    			require.Equal(t, tc.expectedHint, actualHint)
    		})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  4. src/html/template/exec_test.go

    	v := make([]int, len(b))
    	for i, x := range b {
    		v[i] = x + a
    	}
    	return v
    }
    
    var myError = errors.New("my error")
    
    // MyError returns a value and an error according to its argument.
    func (t *T) MyError(error bool) (bool, error) {
    	if error {
    		return true, myError
    	}
    	return false, nil
    }
    
    // A few methods to test chaining.
    func (t *T) GetU() *U {
    	return t.U
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  5. pkg/controller/endpointslice/endpointslice_controller_test.go

    			pod := newPod(1, namespace, true, 0, false)
    			err := esController.podStore.Add(pod)
    			assert.NoError(t, err)
    
    			err = esController.serviceStore.Add(tc.service)
    			assert.NoError(t, err)
    
    			err = esController.syncService(logger, fmt.Sprintf("%s/%s", namespace, serviceName))
    			assert.NoError(t, err)
    			assert.Len(t, client.Actions(), 0)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/buildlist.go

    	// m's go.mod file indicates that it supports graph pruning.
    	loadOne := func(m module.Version) (*modFileSummary, error) {
    		return mg.loadCache.Do(m, func() (*modFileSummary, error) {
    			summary, err := goModSummary(m)
    
    			mu.Lock()
    			if err == nil {
    				mg.g.Require(m, summary.require)
    			} else {
    				hasError = true
    			}
    			mu.Unlock()
    
    			return summary, err
    		})
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		// Therefore, this method should not either, but instead act as if the previous call failed,
    		// which means the error should be ignored.
    		if crierror.IsNotFound(err) {
    			continue
    		}
    		if err != nil {
    			// Merely log this here; GetPodStatus will actually report the error out.
    			klog.V(4).InfoS("ContainerStatus return error", "containerID", c.Id, "err", err)
    			return nil, err
    		}
    		status := resp.GetStatus()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    			killSandboxResult.Fail(kubecontainer.ErrKillPodSandbox, err.Error())
    			klog.ErrorS(nil, "Failed to stop sandbox", "podSandboxID", podSandbox.ID)
    		}
    	}
    
    	return
    }
    
    func (m *kubeGenericRuntimeManager) GeneratePodStatus(event *runtimeapi.ContainerEventResponse) (*kubecontainer.PodStatus, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  9. tests/integration/security/authz_test.go

    								Port: echo.Port{
    									Protocol: protocol.HTTP,
    								},
    								HTTP: echo.HTTP{
    									Headers: headers.New().WithHost(c.host).Build(),
    								},
    								Check: check.And(check.NoError(), check.Status(wantCode)),
    							}
    							from.CallOrFail(t, opts)
    						})
    					}
    				})
    		})
    }
    
    func TestAuthz_NotMethod(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  10. src/cmd/cgo/gcc.go

    		// exception: newer GCC versions will sometimes emit
    		// an error on a macro #define with a note referring
    		// to where the expansion occurs. We care about where
    		// the expansion occurs, so in that case treat the note
    		// as an error.
    		isError := strings.Contains(line, ": error:")
    		isErrorNote := strings.Contains(line, ": note:") && sawUnmatchedErrors
    		if !isError && !isErrorNote {
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top