Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 138 for getlogin (0.16 sec)

  1. hack/lib/util.sh

        - macOS w/ Docker for Mac: domain socket is used, DOCKER_* should be unset. In Bash run `unset ${!DOCKER_*}`
      - Other things to check:
        - Linux: User isn't in 'docker' group.  Add and relogin.
          - Something like 'sudo usermod -a -G docker ${USER}'
          - RHEL7 bug and workaround: https://bugzilla.redhat.com/show_bug.cgi?id=1119282#c8
    EOF
        return 1
      fi
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/Task.java

         * the QUIET log level, and System.err is redirected at the ERROR log level.
         *
         * @return the LoggingManager. Never returns null.
         */
        @Internal
        LoggingManager getLogging();
    
        /**
         * <p>Returns the value of the given property of this task.  This method locates a property as follows:</p>
         *
         * <ol>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

            for (InternalPluginApplicationResult result : pluginApplicationResults) {
                PluginIdentifier plugin = toPluginIdentifier(result.getPlugin());
                if (plugin != null) {
                    results.add(new DefaultPluginApplicationResult(plugin, result.getTotalConfigurationTime()));
                }
            }
            return results;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go

    	_, _, e1 := RawSyscall(SYS_SETGID, uintptr(gid), 0, 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Setlogin(name string) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(name)
    	if err != nil {
    		return
    	}
    	_, _, e1 := Syscall(SYS_SETLOGIN, uintptr(unsafe.Pointer(_p0)), 0, 0)
    	if e1 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 38.8K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            this.executionRoot = executionRoot;
        }
    
        public String getDefaultGoal() {
            return getBuild() != null ? getBuild().getDefaultGoal() : null;
        }
    
        public Plugin getPlugin(String pluginKey) {
            return getBuild().getPluginsAsMap().get(pluginKey);
        }
    
        /**
         * Default toString
         */
        @Override
        public String toString() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        if (!matchPattern(constant_val, m_Constant(&added_value))) return failure();
    
        // Check the add op is applied to begin.
        mlir::TypedValue<::mlir::TensorType> begin_tensor =
            strided_slice_op.getBegin();
        mlir::TypedValue<::mlir::TensorType> add_source_tensor =
            add_op ? add_op.getLhs() : sub_op.getLhs();
        if (begin_tensor != add_source_tensor) {
          return failure();
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  7. pkg/kube/client.go

    	opts := &v1.PodLogOptions{
    		Container: container,
    		Previous:  previousLog,
    	}
    	res, err := c.kube.CoreV1().Pods(podNamespace).GetLogs(podName, opts).Stream(ctx)
    	if err != nil {
    		return "", err
    	}
    	defer closeQuietly(res)
    
    	builder := &strings.Builder{}
    	if _, err = io.Copy(builder, res); err != nil {
    		return "", err
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      LogicalResult matchAndRewrite(TF::SliceOp op,
                                    PatternRewriter &rewriter) const override {
        Location loc = op.getLoc();
        Value input = op.getInput();
        Value begin_indices = op.getBegin();
        Value sizes = op.getSize();
    
        auto input_ty = mlir::dyn_cast<RankedTensorType>(input.getType());
        auto begin_type = mlir::dyn_cast<RankedTensorType>(begin_indices.getType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go

    	_, _, e1 := RawSyscall(SYS_SETGID, uintptr(gid), 0, 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Setlogin(name string) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(name)
    	if err != nil {
    		return
    	}
    	_, _, e1 := Syscall(SYS_SETLOGIN, uintptr(unsafe.Pointer(_p0)), 0, 0)
    	if e1 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 44.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm64.go

    	_, _, e1 := RawSyscall(SYS_SETGID, uintptr(gid), 0, 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Setlogin(name string) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(name)
    	if err != nil {
    		return
    	}
    	_, _, e1 := Syscall(SYS_SETLOGIN, uintptr(unsafe.Pointer(_p0)), 0, 0)
    	if e1 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 44.9K bytes
    - Viewed (0)
Back to top