Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 182 for Succeeded (0.22 sec)

  1. src/cmd/vendor/golang.org/x/text/language/parse.go

    	Subtag() string
    }
    
    // Parse parses the given BCP 47 string and returns a valid Tag. If parsing
    // failed it returns an error and any part of the tag that could be parsed.
    // If parsing succeeded but an unknown value was found, it returns
    // ValueError. The Tag returned in this case is just stripped of the unknown
    // value. All other values are preserved. It accepts tags in the BCP 47 format
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. pkg/volume/util/recyclerclient/recycler_client.go

    	}
    
    	// Returning recycler error is preferred, the pod will be deleted again on
    	// the next retry.
    	if err != nil {
    		return fmt.Errorf("failed to recycle volume: %s", err)
    	}
    
    	// Recycle succeeded but we failed to delete the recycler pod. Report it,
    	// the controller will re-try recycling the PV again shortly.
    	if deleteErr != nil {
    		return fmt.Errorf("failed to delete recycler pod: %s", deleteErr)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 8.5K bytes
    - Viewed (1)
  3. platforms/documentation/docs/src/samples/credentials-handling/pass-credentials-to-external-tool-via-stdin/README.adoc

    The script can be executed without Gradle - it will mimic a tool that requires an interactive login.
    
    Gradle build file registers two tasks - one performs a login and the other one depends on the login having succeeded:
    ====
    include::sample[dir="kotlin",files="build.gradle.kts[]"]
    include::sample[dir="groovy",files="build.gradle[]"]
    ====
    
    The `login` task declares an input property and connects it with a credentials provider.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. src/internal/syscall/windows/security_windows.go

    	ret, err := adjustTokenPrivileges(token, disableAllPrivileges, newstate, buflen, prevstate, returnlen)
    	if ret == 0 {
    		// AdjustTokenPrivileges call failed
    		return err
    	}
    	// AdjustTokenPrivileges call succeeded
    	if err == syscall.EINVAL {
    		// GetLastError returned ERROR_SUCCESS
    		return nil
    	}
    	return err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 07:21:38 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/logging_hooks_test.cc

      EnablePassIRPrinting(pass_manager, test_group_name_);
    
      LogicalResult pass_status = pass_manager.run(mlir_module_.get());
      EXPECT_TRUE(pass_status.succeeded());
    
      TF_ASSERT_OK(env_->GetChildren(test_dir_, &files));
      EXPECT_THAT(files, ::testing::SizeIs(2));
    }
    
    };  // namespace
    };  // namespace internal
    };  // namespace tf2xla
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 20:29:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. src/cmd/internal/pkgpath/pkgpath_test.go

    			if err != nil {
    				if !test.fail {
    					t.Errorf("ToSymbolFunc(%q, %q): unexpected error %v", cmd, tmpdir, err)
    				}
    			} else if test.fail {
    				t.Errorf("ToSymbolFunc(%q, %q) succeeded but expected to fail", cmd, tmpdir)
    			} else if got, want := fn(input), test.mangled; got != want {
    				t.Errorf("ToSymbolFunc(%q, %q)(%q) = %q, want %q", cmd, tmpdir, input, got, want)
    			}
    		})
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 18:26:59 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  7. src/net/net_fake_test.go

    	dialed[0].Close()
    	dialed = dialed[1:]
    	t.Logf("closed one connection")
    	c, err = Dial(ln.Addr().Network(), ln.Addr().String())
    	if err == nil {
    		c.Close()
    		t.Logf("Dial succeeded")
    	} else {
    		t.Errorf("unexpected error from Dial: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. src/sync/rwmutex.go

    		runtime_SemacquireRWMutexR(&rw.readerSem, false, 0)
    	}
    	if race.Enabled {
    		race.Enable()
    		race.Acquire(unsafe.Pointer(&rw.readerSem))
    	}
    }
    
    // TryRLock tries to lock rw for reading and reports whether it succeeded.
    //
    // Note that while correct uses of TryRLock do exist, they are rare,
    // and use of TryRLock is often a sign of a deeper problem
    // in a particular use of mutexes.
    func (rw *RWMutex) TryRLock() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. pkg/kubelet/prober/prober.go

    		klog.V(3).InfoS("Probe succeeded with a warning", "probeType", probeType, "pod", klog.KObj(pod), "podUID", pod.UID, "containerName", container.Name, "output", output)
    	} else {
    		klog.V(3).InfoS("Probe succeeded", "probeType", probeType, "pod", klog.KObj(pod), "podUID", pod.UID, "containerName", container.Name)
    	}
    	return results.Success, nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 10:50:13 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. src/sync/pool_test.go

    		}
    	}
    	// Check that at least some PopHeads succeeded. We skip this
    	// check in short mode because it's common enough that the
    	// queue will stay nearly empty all the time and a PopTail
    	// will happen during the window between every PushHead and
    	// PopHead.
    	if !testing.Short() && nPopHead == 0 {
    		t.Errorf("popHead never succeeded")
    	}
    }
    
    func TestNilPool(t *testing.T) {
    	catch := func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top