Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 157 for getlogin (0.17 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_openbsd.go

    //sys	Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error)
    //sysnb	Setegid(egid int) (err error)
    //sysnb	Seteuid(euid int) (err error)
    //sysnb	Setgid(gid int) (err error)
    //sys	Setlogin(name string) (err error)
    //sysnb	Setpgid(pid int, pgid int) (err error)
    //sys	Setpriority(which int, who int, prio int) (err error)
    //sysnb	Setregid(rgid int, egid int) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 11K bytes
    - Viewed (0)
  2. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptor.java

        }
    
        public String getRequiredJavaVersion() {
            return requiredJavaVersion;
        }
    
        public void setPlugin(Plugin plugin) {
            this.plugin = plugin;
        }
    
        public Plugin getPlugin() {
            return plugin;
        }
    
        public Artifact getPluginArtifact() {
            return pluginArtifact;
        }
    
        public void setPluginArtifact(Artifact pluginArtifact) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Apr 14 17:14:22 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java

            return false;
        }
    
        private String pluginDeclaration(MavenSession mavenSession, MojoDescriptor mojoDescriptor) {
            InputLocation inputLocation =
                    mojoDescriptor.getPluginDescriptor().getPlugin().getLocation("");
            if (inputLocation != null && inputLocation.getSource() != null) {
                StringBuilder stringBuilder = new StringBuilder();
                stringBuilder.append(inputLocation.getSource().getModelId());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 23 12:25:04 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

          packed_dims.push_back(*dim);
        } else {
          return {};
        }
      }
    
      // Slice exactly the first shape dimension:
      //   begin = [0] end = [1], strides = [1]
      auto begin = get_const_int(slice_op.getBegin(), /*expected_rank=*/1);
      auto end = get_const_int(slice_op.getEnd(), /*expected_rank=*/1);
      auto strides = get_const_int(slice_op.getStrides(), /*expected_rank=*/1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/ProjectDelegate.kt

            delegate.javaexec(action)
    
        @AllowUsingApiForExternalUse
        override fun getChildProjects(): MutableMap<String, Project> =
            delegate.childProjects
    
        override fun getLogging(): LoggingManager =
            delegate.logging
    
        override fun getTasks(): TaskContainer =
            delegate.tasks
    
        override fun getName(): String =
            delegate.name
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:16:16 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  6. cni/test/install_cni.go

    	}
    
    	// Find Istio CNI and remove from plugin list
    	plugins, err := util.GetPlugins(cniConfigMap)
    	if err != nil {
    		t.Fatal(err)
    	}
    	for i, rawPlugin := range plugins {
    		plugin, err := util.GetPlugin(rawPlugin)
    		if err != nil {
    			t.Fatal(err)
    		}
    		if plugin["type"] == "istio-cni" {
    			cniConfigMap["plugins"] = append(plugins[:i], plugins[i+1:]...)
    			break
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/javadoc/Groovydoc.java

        private final Property<Boolean> includeMainForScripts = getProject().getObjects().property(Boolean.class);
    
        public Groovydoc() {
            getLogging().captureStandardOutput(LogLevel.INFO);
        }
    
        @TaskAction
        protected void generate() {
            checkGroovyClasspathNonEmpty(getGroovyClasspath().getFiles());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  8. pkg/volume/emptydir/empty_dir_test.go

    			t.Errorf("fail to create path: %s", volPath)
    		}
    	}
    
    	// Stat the directory and check the permission bits
    	testSetUp(mounter, metadataDir, volPath)
    
    	log := physicalMounter.GetLog()
    	// Check the number of mounts performed during setup
    	if e, a := config.expectedSetupMounts, len(log); e != a {
    		t.Errorf("Expected %v physicalMounter calls during setup, got %v", e, a)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

        auto attribute_type = rewriter.getIntegerType(64);
        rewriter.replaceOpWithNewOp<TF::StridedSliceOp>(
            op, strided_slice_op.getType(), reshape, strided_slice_op.getBegin(),
            strided_slice_op.getEnd(), strided_slice_op.getStrides(),
            rewriter.getIntegerAttr(attribute_type, revised_begin_mask),
            rewriter.getIntegerAttr(attribute_type, revised_end_mask),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  10. maven-core/pom.xml

                  <exclude>org.apache.maven.toolchain.DefaultToolchain#getLog():METHOD_RETURN_TYPE_CHANGED</exclude>
                  <exclude>org.apache.maven.toolchain.DefaultToolchain#DefaultToolchain(org.apache.maven.toolchain.model.ToolchainModel,org.codehaus.plexus.logging.Logger):CONSTRUCTOR_REMOVED</exclude>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top