Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for isLegal (0.48 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/policies.go

    }
    
    func implicitWaypointPolicyName(waypoint *Waypoint) string {
    	if !features.DefaultAllowFromWaypoint || waypoint == nil || len(waypoint.ServiceAccounts) == 0 {
    		return ""
    	}
    	// use '_' character since those are illegal in k8s names
    	return "istio_allow_waypoint_" + waypoint.Namespace + "_" + waypoint.Name
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheEncryptionIntegrationTest.groovy

            failure.assertHasDescription("Error loading encryption key from GRADLE_ENCRYPTION_KEY environment variable")
            failure.assertHasCause("Illegal base64 character ${Integer.toHexString((int) invalidBase64Char)}")
        }
    
        def "build fails if key is provided via env var but not long enough"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

      // TODO(hinsu): Use TFLite constant op for constants.
      target.addLegalOp<arith::ConstantOp>();
      target.addLegalOp<func::FuncOp>();
      target.addDynamicallyLegalOp<func::ReturnOp>(is_legal);
      target.addDynamicallyLegalOp<TF::YieldOp>(is_legal);
      target.addDynamicallyLegalOp<TF::TensorListSetItemOp>(is_set_item_legal);
      target.addLegalOp<TFL::CustomOp>();
      // Register fused LSTM/RNN ops as legal.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintController.kt

            abstract fun dispose(): WritingState
    
            private
            fun illegalStateFor(operation: String): Nothing = throw IllegalStateException(
                "'$operation' is illegal while in '${javaClass.simpleName}' state."
            )
        }
    
        private
        inner class Idle : WritingState() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

        val useSiteUnwrapped = unwrapUseSiteSubstitutionOverride()
        if (useSiteUnwrapped !is CallableMemberDescriptor) return useSiteUnwrapped
        if (useSiteUnwrapped.kind.isReal) return useSiteUnwrapped
        val overriddenDescriptor = useSiteUnwrapped.overriddenDescriptors.singleOrNull()?.unwrapUseSiteSubstitutionOverride()
            ?: return useSiteUnwrapped
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  6. cmd/api-errors.go

    // descriptions for all the error responses.
    var errorCodes = errorCodeMap{
    	ErrInvalidCopyDest: {
    		Code:           "InvalidRequest",
    		Description:    "This copy request is illegal because it is trying to copy an object to itself without changing the object's metadata, storage class, website redirect location or encryption attributes.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidCopySource: {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/proxier.go

    	// and Port names directly in nftables chain names (though note that this assumes
    	// that the chain name won't *start* with any of those strings, since that might
    	// be illegal). We use "/" to separate the parts of the name, which is one of the
    	// two characters allowed in a chain name that isn't allowed in our input strings.
    
    	name := fmt.Sprintf("%s/%s/%s/%s",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/conversion.go

    		if len(ns) > 0 {
    			resp = append(resp, fmt.Sprintf("%s/%s", ns, hostname))
    		}
    	}
    
    	// If nothing matched use ~ namespace (match nothing). We need this since its illegal to have an
    	// empty hostname list, but we still need the Gateway provisioned to ensure status is properly set and
    	// SNI matches are established; we just don't want to actually match any routing rules (yet).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  9. cmd/test-utils_test.go

    	globalIsCICD = true
    
    	os.Exit(m.Run())
    }
    
    // concurrency level for certain parallel tests.
    const testConcurrencyLevel = 10
    
    const iso8601TimeFormat = "2006-01-02T15:04:05.000Z"
    
    // Excerpts from @lsegal - https://github.com/aws/aws-sdk-js/issues/659#issuecomment-120477258
    //
    //	User-Agent:
    //
    //	    This is ignored from signing because signing this causes problems with generating pre-signed URLs
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods.go

    	if pod.Status.Phase == v1.PodFailed || pod.Status.Phase == v1.PodSucceeded {
    		// API server shows terminal phase; transitions are not allowed
    		if s.Phase != pod.Status.Phase {
    			klog.ErrorS(nil, "Pod attempted illegal phase transition", "pod", klog.KObj(pod), "originalStatusPhase", pod.Status.Phase, "apiStatusPhase", s.Phase, "apiStatus", s)
    			// Force back to phase from the API server
    			s.Phase = pod.Status.Phase
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top