Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of about 10,000 for unserved (0.18 sec)

  1. src/testing/testing_windows.go

    		unwrapped := errors.Unwrap(err)
    		if unwrapped == nil {
    			break
    		}
    		err = unwrapped
    	}
    	if err == syscall.ERROR_ACCESS_DENIED {
    		return true // Observed in https://go.dev/issue/50051.
    	}
    	if err == windows.ERROR_SHARING_VIOLATION {
    		return true // Observed in https://go.dev/issue/51442.
    	}
    	return false
    }
    
    // highPrecisionTime represents a single point in time with query performance counter.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. src/internal/runtime/atomic/doc.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    /*
    Package atomic provides atomic operations, independent of sync/atomic,
    to the runtime.
    
    On most platforms, the compiler is aware of the functions defined
    in this package, and they're replaced with platform-specific intrinsics.
    On other platforms, generic implementations are made available.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 771 bytes
    - Viewed (0)
  3. src/crypto/internal/boring/bcache/cache.go

    	// we observed with a new k, v entry.
    	// If we win that race, we're done.
    	// Otherwise, we try the whole thing again,
    	// with two optimizations:
    	//
    	//  1. We track in noK the start of the section of
    	//     the list that we've confirmed has no entry for k.
    	//     The next time down the list, we can stop at noK,
    	//     because new entries are inserted at the front of the list.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 00:30:19 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  4. test/fixedbugs/issue11987.go

    // run
    
    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 11987. The ppc64 SRADCC instruction was misassembled in a way
    // lost bit 5 of the immediate so v>>32 was assembled as v>>0.  SRADCC
    // is only ever inserted by peep so it's hard to be sure when it will
    // be used. This formulation worked when the bug was fixed.
    
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 621 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/deduplicate_bound_input_bindings.cc

        auto attr = func.getArgAttrOfType<FlatSymbolRefAttr>(
            i, "tf_saved_model.bound_input");
        if (!attr) continue;
        auto inserted = unique_bound_inputs.insert(std::make_pair(attr, i));
        if (inserted.second) continue;
        auto duplicate_arg = func.getArgument(i);
        auto original_arg = func.getArgument(unique_bound_inputs[attr]);
        duplicate_arg.replaceAllUsesWith(original_arg);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 04 09:25:35 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  6. test/fixedbugs/bug274.go

    // errorcheck
    
    // Copyright 2010 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // 6g accepts the program below even though it is syntactically incorrect:
    // Each statement in the list of statements for each case clause must be
    // terminated with a semicolon. No semicolon is present for the labeled
    // statements and because the last token is a colon ":", no semicolon is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 888 bytes
    - Viewed (0)
  7. tensorflow/cc/experimental/libtf/impl/string.cc

    /* Copyright 2021 The TensorFlow Authors. All Rights Reserved.
    
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 28 21:37:07 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/testing_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package syntax
    
    import (
    	"fmt"
    	"regexp"
    	"strings"
    	"testing"
    )
    
    func TestCommentMap(t *testing.T) {
    	const src = `/* ERROR "0:0" */ /* ERROR "0:0" */ // ERROR "0:0"
    // ERROR "0:0"
    x /* ERROR "3:1" */                // ignore automatically inserted semicolon here
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:53:18 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/defs.cc

    /* Copyright 2017 The TensorFlow Authors. All Rights Reserved.
    
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 07 01:03:32 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/internal/configstore/download_windows.go

    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build windows
    
    package configstore
    
    import (
    	"os/exec"
    	"syscall"
    
    	"golang.org/x/sys/windows"
    )
    
    func init() {
    	needNoConsole = needNoConsoleWindows
    }
    
    func needNoConsoleWindows(cmd *exec.Cmd) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top