Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 370 for disallows (0.22 sec)

  1. releasenotes/notes/41171.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: security
    issue: []
    releaseNotes:
    - |
      **Updated** the default value for TRUSTED_GATEWAY_CIDR.
    
      Previously this was empty which implicitly caused the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 26 16:41:35 UTC 2022
    - 256 bytes
    - Viewed (0)
  2. src/runtime/internal/sys/nih.go

    // `sysAlloc`, `persistentalloc`, r`fixalloc`, or from a manually-managed span).
    //
    // Specifically:
    //
    // 1. `new(T)`, `make([]T)`, `append([]T, ...)` and implicit heap
    // allocation of T are disallowed. (Though implicit allocations are
    // disallowed in the runtime anyway.)
    //
    // 2. A pointer to a regular type (other than `unsafe.Pointer`) cannot be
    // converted to a pointer to a not-in-heap type, even if they have the
    // same underlying type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 18:24:50 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/lazy/lazy.go

    func (m *MapValue) Size() ref.Val {
    	return types.Int(len(m.callbacks))
    }
    
    // ConvertToNative returns an error because it is disallowed
    func (m *MapValue) ConvertToNative(typeDesc reflect.Type) (any, error) {
    	return nil, fmt.Errorf("disallowed conversion from %q to %q", m.typeValue.TypeName(), typeDesc.Name())
    }
    
    // ConvertToType converts the map to the given type.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.7.md

      * Fix ceph-secret type to kubernetes.io/rbd in kubernetes-master charm ([#44635](https://github.com/kubernetes/kubernetes/pull/44635), [@Cynerva](https://github.com/Cynerva))
    
      * Disallows installation of upstream docker from PPA in the Juju kubernetes-worker charm. ([#44681](https://github.com/kubernetes/kubernetes/pull/44681), [@wwwtyro](https://github.com/wwwtyro))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/tests/odml-to-stablehlo-smuggle-resize.mlir

    // RUN: odml_to_stablehlo %s -skip-resize -smuggle-disallowed-ops -o - | FileCheck %s
    // RUN: odml-to-stablehlo-opt %s --smuggle-disallowed-ops-pass | FileCheck %s --check-prefix=CHECK-OPT
    
    // CHECK-LABEL: @main
    module attributes {tf.versions = {bad_consumers = [], min_consumer = 12 : i32, producer = 975 : i32}, tf_saved_model.semantics}  {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 18:33:43 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            def value = property.orNull
    
            then:
            value == someValue()
    
            and:
            1 * host.beforeRead(null) >> null
        }
    
        def "can disallow changes when host is not ready when unsafe read disallowed"() {
            given:
            def property = propertyWithNoValue()
            property.disallowUnsafeRead()
            property.set(someValue())
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/device_compiler_disable_test.cc

      // Check that async compilation is disallowed.
      status = xla_device_compiler->CompileIfNeeded(
          XlaCompiler::Options{}, fn, args, XlaCompiler::CompileOptions{},
          DeviceCompileMode::kAsync, profiler, &compilation_result, &executable);
      EXPECT_FALSE(status.ok());
      EXPECT_TRUE(absl::StrContains(status.message(), "XLA compilation disabled"));
    
      // Check that lazy compilation is disallowed.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/pkg/printers/sourcechecker.go

    }
    
    // illegalPackageSourceChecker compares a given
    // object's package path, and determines if the
    // object originates from a disallowed source.
    type illegalPackageSourceChecker struct {
    	// disallowedPrefixes is a slice of disallowed package path
    	// prefixes for a given runtime.Object that we are printing.
    	disallowedPrefixes []string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 23:00:24 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  9. fess-crawler-es/src/test/java/org/codelibs/fess/crawler/util/CrawlerWebServer.java

                tempDir.mkdirs();
    
                final StringBuilder buf = new StringBuilder();
                buf.append("User-agent: *").append('\n');
                buf.append("Disallow: /admin/").append('\n');
                buf.append("Disallow: /websvn/").append('\n');
                final File robotTxtFile = new File(tempDir, "robots.txt");
                FileUtil.writeBytes(robotTxtFile.getAbsolutePath(), buf.toString().getBytes("UTF-8"));
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/configurationCache/disallowedTypesFixed/kotlin/settings.gradle.kts

    rootProject.name = "disallowed-types-fixed"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 44 bytes
    - Viewed (0)
Back to top