Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for goerrors (0.15 sec)

  1. pkg/kubelet/images/image_gc_manager.go

    limitations under the License.
    */
    
    package images
    
    import (
    	"context"
    	goerrors "errors"
    	"fmt"
    	"math"
    	"sort"
    	"strings"
    	"sync"
    	"time"
    
    	"go.opentelemetry.io/otel/trace"
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/klog/v2"
    
    	"k8s.io/apimachinery/pkg/util/errors"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/wait"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. pkg/volume/csi/nodeinfomanager/nodeinfomanager.go

    import (
    	"context"
    	"encoding/json"
    	goerrors "errors"
    	"fmt"
    	"math"
    	"strings"
    	"sync"
    
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	storagev1 "k8s.io/api/storage/v1"
    	"k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	utilerrors "k8s.io/apimachinery/pkg/util/errors"
    	"k8s.io/apimachinery/pkg/util/sets"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  3. pkg/controller/garbagecollector/garbagecollector.go

    */
    
    package garbagecollector
    
    import (
    	"context"
    	goerrors "errors"
    	"fmt"
    	"reflect"
    	"sync"
    	"time"
    
    	"k8s.io/apimachinery/pkg/api/errors"
    	"k8s.io/apimachinery/pkg/api/meta"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/types"
    	utilerrors "k8s.io/apimachinery/pkg/util/errors"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  4. pkg/volume/util/operationexecutor/operation_generator.go

    limitations under the License.
    */
    
    package operationexecutor
    
    import (
    	"context"
    	goerrors "errors"
    	"fmt"
    	"os"
    	"path/filepath"
    	"strings"
    	"time"
    
    	"k8s.io/apimachinery/pkg/api/resource"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    */
    
    package kubelet
    
    import (
    	"bytes"
    	"context"
    	goerrors "errors"
    	"fmt"
    	"io"
    	"net/http"
    	"net/url"
    	"os"
    	"os/exec"
    	"os/user"
    	"path/filepath"
    	"runtime"
    	"sort"
    	"strconv"
    	"strings"
    
    	"github.com/google/go-cmp/cmp"
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/labels"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    		if(p)
    			*p = '\0';
    		printf("\t{ %d, \"%s\", \"%s\" },\n", e, signals[i].name, buf);
    	}
    	printf("}\n\n");
    
    	return 0;
    }
    
    '
    ) >_errors.c
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  7. pkg/controller/volume/persistentvolume/provision_test.go

    				{Verb: "create", Resource: "persistentvolumes", Error: errors.New("Mock creation error5")},
    			},
    			test: wrapTestWithPluginCalls(
    				nil, // recycle calls
    				[]error{ // delete calls
    					errors.New("Mock deletion error1"),
    					errors.New("Mock deletion error2"),
    					errors.New("Mock deletion error3"),
    					errors.New("Mock deletion error4"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/delete_test.go

    			initialClaims:   noclaims,
    			expectedClaims:  noclaims,
    			expectedEvents:  []string{"Warning VolumeFailedDelete"},
    			errors:          noerrors,
    			test:            wrapTestWithReclaimCalls(operationDelete, []error{errors.New("Mock delete error")}, testSyncVolume),
    		},
    		{
    			// delete success(?) - volume is deleted before doDelete() starts
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. maven-model-builder/src/test/java/org/apache/maven/model/validation/DefaultModelValidatorTest.java

            assertViolations(result, 0, 4, 0);
    
            assertContains(result.getErrors().get(0), "duplicate execution with id a");
            assertContains(result.getErrors().get(1), "duplicate execution with id default");
            assertContains(result.getErrors().get(2), "duplicate execution with id c");
            assertContains(result.getErrors().get(3), "duplicate execution with id b");
        }
    
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 13:13:07 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  10. src/fmt/errors.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package fmt
    
    import (
    	"errors"
    	"slices"
    )
    
    // Errorf formats according to a format specifier and returns the string as a
    // value that satisfies error.
    //
    // If the format specifier includes a %w verb with an error operand,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top