Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Elias (0.15 sec)

  1. Makefile.core.mk

    ${ISTIO_BIN}/go-junit-report:
    	@echo "go-junit-report was not found in the build environment."
    	@echo "Please install go-junit-report (ex. go install github.com/jstemmer/go-junit-report@latest)"
    	@exit 1
    
    # This is just an alias for racetest now
    test: racetest ## Runs all unit tests
    
    # For now, keep a minimal subset. This can be expanded in the future.
    BENCH_TARGETS ?= ./pilot/...
    
    PKG ?= ./...
    .PHONY: racetest
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed May 08 20:25:15 GMT 2024
    - 22.5K bytes
    - Viewed (0)
  2. istioctl/pkg/precheck/precheck.go

    		}
    	}
    	if minor <= 20 {
    		// VERIFY_CERTIFICATE_AT_CLIENT and ENABLE_AUTO_SNI
    		if err := checkDestinationRuleTLS(cli, &messages); err != nil {
    			return nil, err
    		}
    		// ENABLE_EXTERNAL_NAME_ALIAS
    		if err := checkExternalNameAlias(cli, &messages); err != nil {
    			return nil, err
    		}
    		// PERSIST_OLDEST_FIRST_HEURISTIC_FOR_VIRTUAL_SERVICE_HOST_MATCHING
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Fri Apr 12 02:57:30 GMT 2024
    - 19.3K bytes
    - Viewed (0)
  3. operator/cmd/mesh/manifest-generate_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    
    	if gotAlias != gotSet {
    		t.Errorf("Flag aliases not producing same output: with --set: \n\n%s\n\nWith alias:\n\n%s\nDiff:\n\n%s\n",
    			gotSet, gotAlias, util.YAMLDiff(gotSet, gotAlias))
    	}
    }
    
    func TestMultiICPSFiles(t *testing.T) {
    	inPathBase := filepath.Join(testDataDir, "input/all_off.yaml")
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 43.5K bytes
    - Viewed (0)
Back to top