Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,540 for unsuccessful (0.18 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

      // the directories already exist; returns false if unable to create
      // directories for any reason. Will also return false if the FilePath does
      // not represent a directory (that is, it doesn't end with a path separator).
      bool CreateDirectoriesRecursively() const;
    
      // Create the directory so that path exists. Returns true if successful or
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestRun.h

     *  considered an error for this function.  Note that the run
     *  statistics (counts of tests, successes, failures) are cleared 
     *  each time this function is run, even if it is unsuccessful.
     *
     *  @return A CU_ErrorCode indicating the first error condition
     *          encountered while running the tests.
     *  @see CU_run_suite() to run the tests in a specific suite.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22K bytes
    - Viewed (0)
  3. pilot/cmd/pilot-agent/app/cmd.go

    	// TODO: Discuss other input methods such as env, flag (ssuvasanth)
    	annotations, err := bootstrap.ReadPodAnnotations("")
    	if err != nil {
    		log.Debugf("Reading podInfoAnnotations file to get excludeInterfaces was unsuccessful. Continuing without exclusions. msg: %v", err)
    		return excludeAddrs
    	}
    	value, ok := annotations[annotation.SidecarTrafficExcludeInterfaces.Name]
    	if !ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. operator/cmd/mesh/manifest_shared_test.go

    // readFile reads a file and returns the contents.
    func readFile(path string) (string, error) {
    	b, err := os.ReadFile(path)
    	return string(b), err
    }
    
    // writeFile writes a file and returns an error if operation is unsuccessful.
    func writeFile(path string, data []byte) error {
    	return os.WriteFile(path, data, 0o644)
    }
    
    // inFileAbsolutePath returns the absolute path for an input file like "gateways".
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 20 22:39:28 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/core.go

    		_, serviceCIDR, err = netutils.ParseCIDRSloppy(controllerContext.ComponentConfig.NodeIPAMController.ServiceCIDR)
    		if err != nil {
    			logger.Info("Warning: unsuccessful parsing of service CIDR", "CIDR", controllerContext.ComponentConfig.NodeIPAMController.ServiceCIDR, "err", err)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
  6. src/runtime/select.go

    	gp.activeStackChans = false
    
    	sellock(scases, lockorder)
    
    	gp.selectDone.Store(0)
    	sg = (*sudog)(gp.param)
    	gp.param = nil
    
    	// pass 3 - dequeue from unsuccessful chans
    	// otherwise they stack up on quiet channels
    	// record the successful case, if any.
    	// We singly-linked up the SudoGs in lock order.
    	casi = -1
    	cas = nil
    	caseSuccess = false
    	sglist = gp.waiting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 13 21:36:04 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. pkg/credentialprovider/plugin/plugin.go

    		configEnvVars = append(configEnvVars, fmt.Sprintf("%s=%s", v.Name, v.Value))
    	}
    
    	// Append current system environment variables, to the ones configured in the
    	// credential provider file. Failing to do so may result in unsuccessful execution
    	// of the provider binary, see https://github.com/kubernetes/kubernetes/issues/102750
    	// also, this behaviour is inline with Credential Provider Config spec
    	cmd.Env = mergeEnvVars(e.environ(), configEnvVars)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 05:07:28 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. src/bytes/buffer_test.go

    	}
    
    	// check not at EOF
    	b.WriteString("abcdefghijklmnopqrstuvwxyz")
    
    	// after unsuccessful read
    	if n, err := b.Read(nil); n != 0 || err != nil {
    		t.Fatalf("Read(nil) = %d,%v; want 0,nil", n, err)
    	}
    	if err := b.UnreadByte(); err == nil {
    		t.Fatal("UnreadByte after Read(nil): got no error")
    	}
    
    	// after successful read
    	if _, err := b.ReadBytes('m'); err != nil {
    		t.Fatalf("ReadBytes: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:31:36 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/filesystem/filesystem_interface.h

      ///
      /// On successful deletion, `status` must be `TF_OK` and `*undeleted_files`
      /// and `*undeleted_dirs` must be 0. On unsuccessful deletion, `status` must
      /// be set to the reason why one entry couldn't be removed and the proper
      /// count must be updated. If the deletion is unsuccessful because the
      /// traversal couldn't start, `*undeleted_files` must be set to 0 and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    	}
    	return reportedVerb
    }
    
    // determineRequestNamespaceAndName computes name and namespace for the given requests
    //
    // note that the logic of this function was copy&pasted from cacher.go
    // after an unsuccessful attempt of moving it to RequestInfo
    //
    // see: https://github.com/kubernetes/kubernetes/pull/120520
    func determineRequestNamespaceAndName(ctx context.Context, opts *metainternalversion.ListOptions) (namespace, name string) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
Back to top