Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for badly (0.08 sec)

  1. operator/pkg/controller/istiocontrolplane/errdict.go

    	// LikelyCause
    	likelyCauseAPIServer     = "a problem with the Kubernetes API server"
    	likelyCauseConfiguration = "an incorrect or badly formatted configuration"
    	likelyCauseSoftwareBug   = "an issue with the Istio code"
    
    	// Is the error permanent?
    	transiencePermanentForInstall = "If the error occurred immediately after installation, it is likely permanent."
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonInitialCommunicationFailureIntegrationSpec.groovy

            and:
            def analyzer = daemons
            analyzer.daemons.size() == 1
            analyzer.visible.size() == 0
        }
    
        def "daemon drops connection when client request is badly formed"() {
            given:
            buildSucceeds()
            def daemon = daemons.daemon
            daemon.assertIdle()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 07:46:29 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/upgrade/diff_test.go

    			cfgPath:         testUpgradeDiffConfig,
    			setManifestPath: true,
    			manifestPath:    "bad-path",
    			expectedError:   true,
    		},
    		{
    			name:          "invalid: badly formatted version as argument",
    			cfgPath:       testUpgradeDiffConfig,
    			args:          []string{"bad-version"},
    			expectedError: true,
    		},
    	}
    
    	for _, tc := range testCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 04:08:57 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/BaseClasspathElementTransform.java

        public final void transform(File destination) {
            resultBuilder().accept(destination, builder -> {
                try {
                    visitEntries(builder);
                } catch (FileException e) {
                    // Badly formed archive, so discard the contents and produce an empty JAR
                    LOGGER.debug("Malformed archive '{}'. Discarding contents.", source.getName(), e);
                }
            });
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 14 09:24:02 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. src/crypto/rsa/example_test.go

    		panic("cipher.NewGCM failed: " + err.Error())
    	}
    	ciphertext, _ := hex.DecodeString("00112233445566")
    	plaintext, err := aead.Open(nil, zeroNonce[:], ciphertext, nil)
    	if err != nil {
    		// The RSA ciphertext was badly formed; the decryption will
    		// fail here because the AES-GCM key will be incorrect.
    		fmt.Fprintf(os.Stderr, "Error decrypting: %s\n", err)
    		return
    	}
    
    	fmt.Printf("Plaintext: %s\n", plaintext)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 22:52:37 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/InstrumentationAnalysisTransform.java

                analyzeArtifact(artifact, superTypes, dependencies);
                writeOutput(artifact, outputs, superTypes, dependencies);
            } catch (IOException | FileException ignored) {
                // We support badly formatted jars on the build classpath
                // see: https://github.com/gradle/gradle/issues/13816
                writeOutput(artifact, outputs, Collections.emptyMap(), Collections.emptySet());
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:19:14 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. operator/pkg/validate/validate.go

    	return nil
    }
    
    func validateGatewayName(path util.Path, val any) (errs util.Errors) {
    	v := val.([]*v1alpha1.GatewaySpec)
    	for _, n := range v {
    		if n == nil {
    			errs = append(errs, util.NewErrs(errors.New("badly formatted gateway configuration")))
    		} else {
    			errs = append(errs, validateWithRegex(path, n.Name, ObjectNameRegexp)...)
    		}
    	}
    	return
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 12 16:04:15 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  8. src/cmd/internal/objabi/flag.go

    			case '\\':
    				b.WriteByte('\\')
    			case 'n':
    				b.WriteByte('\n')
    			default:
    				// This shouldn't happen. The only backslashes that reach here
    				// should encode '\n' and '\\' exclusively.
    				panic("badly formatted input")
    			}
    		} else if r == '\\' {
    			wasBS = true
    			continue
    		} else {
    			b.WriteRune(r)
    		}
    		wasBS = false
    	}
    	return b.String()
    }
    
    type debugField struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 23:08:09 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/ast/inspector/typeof.go

    //
    // A perfect hash seemed like overkill.
    //
    // The compiler's switch statement is the clear winner
    // as it produces a binary tree in code,
    // with constant conditions and good branch prediction.
    // (Sadly it is the most verbose in source code.)
    // Binary search suffered from poor branch prediction.
    func typeOf(n ast.Node) uint64 {
    	// Fast path: nearly half of all nodes are identifiers.
    	if _, ok := n.(*ast.Ident); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/recommended.go

    		Authorization:  NewDelegatingAuthorizationOptions(),
    		Audit:          NewAuditOptions(),
    		Features:       NewFeatureOptions(),
    		CoreAPI:        NewCoreAPIOptions(),
    		// Wired a global by default that sadly people will abuse to have different meanings in different repos.
    		// Please consider creating your own FeatureGate so you can have a consistent meaning for what a variable contains
    		// across different repos.  Future you will thank you.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top