Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 259 for unstable (0.1 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseIncrementalCompilationAfterFailureIntegrationTest.groovy

            outputs.snapshot { run language.compileTaskName }
    
            when:
            // Compile more classes, so there is possibility some is generated before a compile failure.
            // Since order of passed classes to javac is unstable we can compile classes in different order on different platforms.
            // Compile .java also for Groovy, so the file is written before failure.
            sourceWithFileSuffix("java", "package a; class A {}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:30 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  2. manifests/charts/istio-cni/values.yaml

          enabled: false
          # Set ambient config dir path: defaults to /etc/ambient-config
          configDir: ""
          # If enabled, and ambient is enabled, DNS redirection will be enabled
          dnsCapture: false
          # UNSTABLE: If enabled, and ambient is enabled, enables ipv6 support
          ipv6: false
    
    
        repair:
          enabled: true
          hub: ""
          tag: ""
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. CHANGELOG.md

    **not stable** and will likely change before the final 5.0.0 release.
    
    If you have code that subclasses `okhttp3.mockwebserver.QueueDispatcher`, this update is not source
    or binary compatible. Migrating to the new `mockwebserver3` package will fix this problem.
    
     *  New: DNS over HTTPS is now a stable feature of OkHttp. We introduced this as an experimental
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:31:39 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  4. tensorflow/c/eager/gradient_checker_test.cc

          ASSERT_EQ(errors::OK, s.code()) << s.message();
          ctx_.reset(ctx_raw);
        }
    
        // Computing numerical gradients with TensorFloat-32 is numerically
        // unstable. Some forward pass tests also fail with TensorFloat-32 due to
        // low tolerances
        enable_tensor_float_32_execution(false);
      }
    
      AbstractContextPtr ctx_;
    
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 10:03:59 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  5. pkg/kube/krt/informer.go

    	// Internal optimization: we know kclient will eventually lookup "ns/name"
    	// We also have a key in this format.
    	// Rather than split and rejoin it later, just pass it as the name
    	// This is depending on "unstable" implementation details, but we own both libraries and tests would catch any issues.
    	if got := i.inf.Get(string(k), ""); !controllers.IsNil(got) {
    		return &got
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 11:01:46 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/gradients/nn_grad_test.cc

          ASSERT_EQ(errors::OK, status_.code()) << status_.message();
          immediate_execution_ctx_.reset(ctx_raw);
        }
    
        // Computing numerical gradients with TensorFloat-32 is numerically
        // unstable. Some forward pass tests also fail with TensorFloat-32 due to
        // low tolerances
        enable_tensor_float_32_execution(false);
      }
    
      AbstractContextPtr immediate_execution_ctx_;
      GradientRegistry registry_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 13:53:47 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. hack/lib/etcd.sh

      elif command -v netstat &>/dev/null; then
        port_check_command="netstat"
      else
        kube::log::usage "unable to identify if etcd is bound to port ${ETCD_PORT}. unable to find ss or netstat utilities."
        exit 1
      fi
      if ${port_check_command} -nat | grep "LISTEN" | grep "[\.:]${ETCD_PORT:?}" >/dev/null 2>&1; then
        kube::log::usage "unable to start etcd as port ${ETCD_PORT} is in use. please stop the process listening on this port and retry."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_tidy_convergence.txt

    
    # Since we attempt to resolve the dependencies of package x whenever we add x itself,
    # this end state is stable.
    
    go mod tidy -e
    cmp go.mod go.mod.tidye
    
    
    # An explicit 'go get' with the correct versions should allow 'go mod tidy' to
    # succeed and remain stable. y.1 does not upgrade x, and can therefore be used
    # with it.
    
    go get example.net/x@v0.1.0 example.net/y@v0.1.0
    go mod tidy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/main/java/org/gradle/buildinit/tasks/InitBuild.java

        }
    
        /**
         * Can the generated build use new and unstable features?
         *
         * When enabled, the generated build will use new patterns, APIs or features that
         * may be unstable between minor releases. Use this if you'd like to try out the
         * latest features of Gradle.
         *
         * By default, init will generate a build that uses stable features and behavior.
         *
         * @since 7.3
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/cfg/cfg.go

    	CmdName string // "build", "install", "list", "mod tidy", etc.
    
    	DebugActiongraph  string // -debug-actiongraph flag (undocumented, unstable)
    	DebugTrace        string // -debug-trace flag
    	DebugRuntimeTrace string // -debug-runtime-trace flag (undocumented, unstable)
    
    	// GoPathError is set when GOPATH is not set. it contains an
    	// explanation why GOPATH is unset.
    	GoPathError   string
    	GOPATHChanged bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top