Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 89 for Binary1 (0.15 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirCompileTimeConstantEvaluator.kt

            return (value as? String)?.length?.let {
                it.toConstantValueKind().toLiteralExpression(source, it)
            }
        }
    
        // Binary operators
        private fun FirLiteralExpression.evaluate(
            function: FirSimpleFunction,
            other: FirLiteralExpression
        ): FirLiteralExpression? {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  2. testing/architecture-test/src/changes/archunit-store/public-api-not-extends-internal-types.txt

    Class <org.gradle.language.scala.tasks.AbstractScalaCompile> extends/implements org.gradle.api.internal.tasks.compile.HasCompileOptions that is Gradle Internal API in (AbstractScalaCompile.java:0)
    Class <org.gradle.platform.base.binary.BaseBinarySpec> extends/implements org.gradle.api.internal.AbstractBuildableComponentSpec, org.gradle.platform.base.internal.BinarySpecInternal that are Gradle Internal API in (BaseBinarySpec.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. cmd/kubelet/app/server.go

    	}
    }
    
    // RunKubelet is responsible for setting up and running a kubelet.  It is used in three different applications:
    //
    //	1 Integration tests
    //	2 Kubelet binary
    //	3 Standalone 'kubernetes' binary
    //
    // Eventually, #2 will be replaced with instances of #3
    func RunKubelet(ctx context.Context, kubeServer *options.KubeletServer, kubeDeps *kubelet.Dependencies, runOnce bool) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  4. pkg/volume/plugins.go

    }
    
    // VolumeConfig is how volume plugins receive configuration.  An instance
    // specific to the plugin will be passed to the plugin's
    // ProbeVolumePlugins(config) func.  Reasonable defaults will be provided by
    // the binary hosting the plugins while allowing override of those default
    // values.  Those config values are then set to an instance of VolumeConfig
    // and passed to the plugin.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  5. maven-core/pom.xml

                  <include>org.apache.maven.toolchain</include>
                  <include>org.apache.maven.usability</include>
                </includes>
                <!-- allowed non-binary backwards compatible changes -->
                <excludes>
                  <!-- START default constructor on Plexus/JSR 330 components -->
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. cluster/images/etcd/Makefile

    # version at a time, and patch release don't matter.
    #
    # Except from etcd-$(version) and etcdctl-$(version) binaries, we also
    # need etcd and etcdctl binaries for backward compatibility reasons.
    # That binary will be set to the last version from $(BUNDLED_ETCD_VERSIONS).
    BUNDLED_ETCD_VERSIONS?=3.4.18 3.5.14
    
    # LATEST_ETCD_VERSION identifies the most recent etcd version available.
    LATEST_ETCD_VERSION?=3.5.14
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    		return err
    	}
    
    	// Update the binary with the final build ID.
    	// But if OmitDebug is set, don't rewrite the binary, because we set OmitDebug
    	// on binaries that we are going to run and then delete.
    	// There's no point in doing work on such a binary.
    	// Worse, opening the binary for write here makes it
    	// essentially impossible to safely fork+exec due to a fundamental
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

        /**
         * For `=` and compound access like `+=`, `-=`, `*=`, `/=`, `%=`, the LHS of the binary expression is not a complete call. Hence we
         * find the containing binary expression and resolve that instead.
         *
         * However, if, say, `+=` resolves to `plusAssign`, then the LHS is self-contained. In this case we do not return the containing binary
         * expression so that the FIR element corresponding to the LHS is used directly.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  9. platforms/documentation/docs/build.gradle

                }
            }
            publishingJavaLibraries {
                sampleDirectory = samplesRoot.dir("java/library-publishing")
                description = "Publish a Java library to a binary repository."
                category = "Java"
                common {
                    from(templates.javaListLibraryInMyLibrary)
                    from(templates.javaUtilitiesLibraryInMyLibrary)
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  10. src/os/exec/exec_test.go

    	}
    	for fd := uintptr(3); fd <= 100; fd++ {
    		if poll.IsPollDescriptor(fd) {
    			continue
    		}
    
    		if fdtest.Exists(fd) {
    			haveUnexpectedFDs = true
    			return
    		}
    	}
    }
    
    // TestMain allows the test binary to impersonate many other binaries,
    // some of which may manipulate os.Stdin, os.Stdout, and/or os.Stderr
    // (and thus cannot run as an ordinary Test function, since the testing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
Back to top