Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 93 for child1 (0.38 sec)

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

    	{5, "EIO", "input/output error"},
    	{6, "ENXIO", "device not configured"},
    	{7, "E2BIG", "argument list too long"},
    	{8, "ENOEXEC", "exec format error"},
    	{9, "EBADF", "bad file descriptor"},
    	{10, "ECHILD", "no child processes"},
    	{11, "EDEADLK", "resource deadlock avoided"},
    	{12, "ENOMEM", "cannot allocate memory"},
    	{13, "EACCES", "permission denied"},
    	{14, "EFAULT", "bad address"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 79.6K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                    lineage.get(lineage.size() - 1).getDelegate();
            for (int i = lineage.size() - 2; i >= 0; i--) {
                Model child = lineage.get(i);
                parent = inheritanceAssembler.assembleModelInheritance(child.getDelegate(), parent, request, problems);
            }
            return new Model(parent);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      // number of new results after lifting.
      int num_new_results_;
    };
    
    // Analyzes resources that are read or written within attached regions.
    LogicalResult RegionResourceHoister::Analyze() {
      // Hoisting of child regions might have created opportunity for store-load
      // forwarding.
      for (Region& region : op_->getRegions()) {
        ForwardStoreToLoad(&region.front());
      }
    
      llvm::SetVector<Value> all_resources;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                    slf4jLogger.error(line);
                }
    
                currentColor = nextColor;
            }
    
            indent += "  ";
    
            for (ExceptionSummary child : summary.getChildren()) {
                logSummary(child, references, indent, showErrors);
            }
        }
    
        private static final Pattern LAST_ANSI_SEQUENCE = Pattern.compile("(\u001B\\[[;\\d]*[ -/]*[@-~])[^\u001B]*$");
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  5. src/os/os_test.go

    	cmd.Stdin = strings.NewReader("output")
    
    	output, err := cmd.CombinedOutput()
    	if err != nil {
    		t.Fatalf("Failed to spawn child process: %v %q", err, string(output))
    	}
    
    	// result will be like "prw-rw-rw"
    	if len(output) < 1 || output[0] != 'p' {
    		t.Fatalf("Child process reports stdin is not pipe '%v'", string(output))
    	}
    }
    
    func TestStatRelativeSymlink(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	DN_MF_CHILD              = 0x00020000        // Multi function child
    	DN_WILL_BE_REMOVED       = 0x00040000        // DevInst is being removed
    	DN_NOT_FIRST_TIMEE       = 0x00080000        // Has received a config enumerate
    	DN_STOP_FREE_RES         = 0x00100000        // When child is stopped, free resources
    	DN_REBAL_CANDIDATE       = 0x00200000        // Don't skip during rebalance
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_client_test.go

    // returns a recordingConn for the connection. The stdin return value is an
    // opensslInput for the stdin of the child process. It must be closed before
    // Waiting for child.
    func (test *clientTest) connFromCommand() (conn *recordingConn, child *exec.Cmd, stdin opensslInput, stdout *opensslOutputSink, err error) {
    	cert := testRSACertificate
    	if len(test.cert) > 0 {
    		cert = test.cert
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

            },
            "x-kubernetes-int-or-string": {
              "description": "x-kubernetes-int-or-string specifies that this value is either an integer or a string. If this is true, an empty type is allowed and type as child of anyOf is permitted if following one of the following patterns:\n\n1) anyOf:\n   - type: integer\n   - type: string\n2) allOf:\n   - anyOf:\n     - type: integer\n     - type: string\n   - ... zero or more",
              "type": "boolean"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  9. src/crypto/tls/common.go

    	config *Config
    
    	// ctx is the context of the handshake that is in progress.
    	ctx context.Context
    }
    
    // Context returns the context of the handshake that is in progress.
    // This context is a child of the context passed to HandshakeContext,
    // if any, and is canceled when the handshake concludes.
    func (c *ClientHelloInfo) Context() context.Context {
    	return c.ctx
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  10. pkg/apis/core/v1/defaults_test.go

    	// Forbidden: defaulting an existing field `MyField *bool` when it was previously not defaulted
    	// Forbidden: changing an existing default value
    	// Allowed: adding a new field `MyContainer *MyType` and defaulting a child of that type (e.g. `MyContainer.MyChildField`) if and only if MyContainer is non-nil
    	expectedDefaults := map[string]string{
    		".Spec.Containers[0].Env[0].ValueFrom.FieldRef.APIVersion":       `"v1"`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
Back to top