Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,306 for Unsupported (0.21 sec)

  1. pkg/controller/volume/persistentvolume/volume_host.go

    	return func(_, _ string) (*v1.Secret, error) {
    		return nil, fmt.Errorf("GetSecret unsupported in PersistentVolumeController")
    	}
    }
    
    func (ctrl *PersistentVolumeController) GetConfigMapFunc() func(namespace, name string) (*v1.ConfigMap, error) {
    	return func(_, _ string) (*v1.ConfigMap, error) {
    		return nil, fmt.Errorf("GetConfigMap unsupported in PersistentVolumeController")
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/pkg/resource/query_param_verifier_v3_test.go

    			expectedSupports: true,
    		},
    		"Field validation unsupported for unknown GVK": {
    			crds: []schema.GroupKind{},
    			gvk: schema.GroupVersionKind{
    				Group:   "bad",
    				Version: "v1",
    				Kind:    "Uknown",
    			},
    			queryParam:       QueryParamFieldValidation,
    			expectedSupports: false,
    		},
    		"Unknown query param unsupported (for all GVK's)": {
    			crds: []schema.GroupKind{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 12 04:44:45 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/configurationCache/problemsGroovy/tests/fail.out

      See https://docs.gradle.org/0.0.0/userguide/configuration_cache.html#config_cache:requirements:use_project_during_execution
    
    See the complete report at file:///home/user/gradle/samples/build/reports/configuration-cache/<hash>/configuration-cache-report.html
    > Invocation of 'Task.project' by task ':someTask' at execution time is unsupported.
    
    * Try:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 825 bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/task/internal/TaskExecutionDetails.java

                @Override
                public List<String> getExecutionReasons() {
                    return executionReasons;
                }
            };
        }
    
        public static TaskExecutionDetails unsupported() {
            return UNSUPPORTED;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_server_journal_others.go

    package kubelet
    
    import (
    	"context"
    	"errors"
    )
    
    // getLoggingCmd on unsupported operating systems returns the echo command and a warning message (as strings)
    func getLoggingCmd(n *nodeLogQuery, services []string) (string, []string, error) {
    	return "", []string{}, errors.New("Operating System Not Supported")
    }
    
    // checkForNativeLogger on unsupported operating systems returns false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 15:54:36 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/DefaultGradleEnterprisePluginCheckInService.java

        }
    
        // Used just for testing
        public static final String UNSUPPORTED_TOGGLE = "org.gradle.internal.unsupported-enterprise-plugin";
        public static final String UNSUPPORTED_TOGGLE_MESSAGE = "Enterprise plugin unsupported due to secret toggle";
    
        // For Gradle versions 8+, configuration caching builds are not compatible with Gradle Enterprise plugin < 3.12
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 13:28:46 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/common/ir/UniformSupport.cc

        return ExpressedToQuantizedConverter{input_type, element_type};
      }
      // Supported primitive type (which just is the expressed type).
      if (isQuantizablePrimitiveType(input_type))
        return ExpressedToQuantizedConverter{input_type, input_type};
      // Unsupported.
      return ExpressedToQuantizedConverter{input_type, nullptr};
    }
    
    Type ExpressedToQuantizedConverter::convert(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 02:10:16 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. internal/s3select/csv/args.go

    						return fmt.Errorf("unsupported QuoteCharacter '%v'", s)
    					}
    					args.QuoteCharacter = s
    				case "QuoteEscapeCharacter":
    					switch utf8.RuneCountInString(s) {
    					case 0:
    						args.QuoteEscapeCharacter = defaultQuoteEscapeCharacter
    					case 1:
    						args.QuoteEscapeCharacter = s
    					default:
    						return fmt.Errorf("unsupported QuoteEscapeCharacter '%v'", s)
    					}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 06 16:56:10 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  9. pkg/kubelet/config/file_unsupported.go

    package config
    
    import (
    	"fmt"
    
    	"k8s.io/klog/v2"
    )
    
    func (s *sourceFile) startWatch() {
    	klog.ErrorS(nil, "Watching source file is unsupported in this build")
    }
    
    func (s *sourceFile) consumeWatchEvent(e *watchEvent) error {
    	return fmt.Errorf("consuming watch event is unsupported in this build")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 908 bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/PathNotationConverterTest.groovy

        }
    
        def "with Callable of unsupported return value"() {
            def customObj = new DefaultExcludeRule()
    
            when:
            pathNotationParser.parseNotation({ customObj } as Callable);
    
            then:
            thrown(UnsupportedNotationException)
        }
    
        def "with closure of unsupported return value"() {
            def customObj = new DefaultExcludeRule()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 30 16:46:40 UTC 2019
    - 3.7K bytes
    - Viewed (0)
Back to top