Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 162 for verifying (0.13 sec)

  1. src/cmd/compile/internal/types2/named_test.go

    	}
    	if Inst != Tree {
    		t.Errorf("Duplicate instances in cycle: %s (%p) -> %s (%p) -> %s (%p)", Inst, Inst, Node, Node, Tree, Tree)
    	}
    }
    
    // TestMethodOrdering is a simple test verifying that the indices of methods of
    // a named type remain the same as long as the same source and AddMethod calls
    // are presented to the type checker in the same order (go.dev/issue/61298).
    func TestMethodOrdering(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 21:06:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. hack/update-kustomize.sh

    git add .
    git commit -a -m "Update kubectl kustomize to kyaml/$LATEST_KYAML, cmd/config/$LATEST_CONFIG, api/$LATEST_API, kustomize/$LATEST_KUSTOMIZE"
    
    echo -e "\n${color_blue:?}Verifying kubectl kustomize version${color_norm:?}"
    # We use `make` here intead of `go install` to ensure that all of the
    # linker-defined values are set.
    make -C "${KUBE_ROOT}" WHAT=./cmd/kubectl
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:40:04 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. pkg/volume/volume_linux_test.go

    			if err != nil {
    				t.Errorf("for %s error changing ownership with: %v", test.description, err)
    			}
    			err = test.assertFunc(tmpDir)
    			if err != nil {
    				t.Errorf("for %s error verifying permissions with: %v", test.description, err)
    			}
    		})
    	}
    }
    
    // verifyDirectoryPermission checks if given path has directory permissions
    // that is expected by k8s. If returns true if it does otherwise false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/authentication/authenticatorfactory/delegating.go

    	WebhookRetryBackoff *wait.Backoff
    
    	// CacheTTL is the length of time that a token authentication answer will be cached.
    	CacheTTL time.Duration
    
    	// CAContentProvider are the options for verifying incoming connections using mTLS and directly assigning to users.
    	// Generally this is the CA bundle file used to authenticate client certificates
    	// If this is nil, then mTLS will not be used.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 29 07:49:14 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  5. src/go/types/named_test.go

    	}
    	if Inst != Tree {
    		t.Errorf("Duplicate instances in cycle: %s (%p) -> %s (%p) -> %s (%p)", Inst, Inst, Node, Node, Tree, Tree)
    	}
    }
    
    // TestMethodOrdering is a simple test verifying that the indices of methods of
    // a named type remain the same as long as the same source and AddMethod calls
    // are presented to the type checker in the same order (go.dev/issue/61298).
    func TestMethodOrdering(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 16:29:58 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. internal/jwt/parser_test.go

    				}
    				err = ParseWithStandardClaims(data.tokenString, &StandardClaims{}, []byte("HelloSecret"))
    			}
    
    			if data.valid && err != nil {
    				t.Errorf("Error while verifying token: %T:%v", err, err)
    			}
    
    			if !data.valid && err == nil {
    				t.Errorf("Invalid token passed validation")
    			}
    
    			if data.errors != 0 {
    				_, ok := err.(*jwt.ValidationError)
    				if !ok {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Nov 05 19:20:08 UTC 2021
    - 6K bytes
    - Viewed (0)
  7. scripts/docs.py

        readme_path.write_text(new_content, encoding="utf-8")
    
    
    @app.command()
    def verify_readme() -> None:
        """
        Verify README.md content from main index.md
        """
        typer.echo("Verifying README")
        readme_path = Path("README.md")
        generated_content = generate_readme_content()
        readme_content = readme_path.read_text("utf-8")
        if generated_content != readme_content:
            typer.secho(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:26:14 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/model/StateTransitionController.java

                    state = state.failed(ExecutionResult.failed(t));
                });
                throw UncheckedException.throwAsUncheckedException(t);
            }
        }
    
        /**
         * Runs the given action, verifying the current state is the expected state.
         * Fails if the current state is not the given state or a previous operation has failed.
         * Blocks until other operations are complete.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 03 03:31:44 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/mod/sumdb/dirhash/hash.go

    // license that can be found in the LICENSE file.
    
    // Package dirhash defines hashes over directory trees.
    // These hashes are recorded in go.sum files and in the Go checksum database,
    // to allow verifying that a newly-downloaded module has the expected content.
    package dirhash
    
    import (
    	"archive/zip"
    	"crypto/sha256"
    	"encoding/base64"
    	"errors"
    	"fmt"
    	"io"
    	"os"
    	"path/filepath"
    	"sort"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. tests/integration/helm/util.go

    func VerifyInstallation(ctx framework.TestContext, cs cluster.Cluster, nsConfig NamespaceConfig, verifyGateway bool, verifyAmbient bool, revision string) {
    	scopes.Framework.Infof("=== verifying istio installation === ")
    
    	validatingwebhookName := "istiod-default-validator"
    	if revision != "" {
    		validatingwebhookName = fmt.Sprintf("istio-validator-%s-istio-system", revision)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top